mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-08 06:51:32 +08:00
* add support for Python 3.14 * escape % in argparse_translator in help strings * black * cli python version string * fix test param placeholder * fix integration_tests_testers * add 3.14 to ODP Desktop environment creation choices * partial lock update * update lock files * and the rest of the locks --------- Co-authored-by: deeleeramone <>
32 lines
764 B
TOML
Vendored
32 lines
764 B
TOML
Vendored
[tool.poetry]
|
|
name = "openbb-cli"
|
|
version = "1.3.0"
|
|
description = "Investment Research for Everyone, Anywhere."
|
|
authors = ["OpenBB <hello@openbb.co>"]
|
|
packages = [{ include = "openbb_cli" }]
|
|
license = "AGPL-3.0-only"
|
|
readme = "README.md"
|
|
homepage = "https://openbb.co"
|
|
repository = "https://github.com/OpenBB-finance/OpenBB"
|
|
documentation = "https://docs.openbb.co/cli"
|
|
|
|
[tool.poetry.scripts]
|
|
openbb = 'openbb_cli.cli:main'
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10,<4"
|
|
|
|
# OpenBB dependencies
|
|
openbb = { version = "^4.6.0", extras = ["all"] }
|
|
|
|
# CLI dependencies
|
|
prompt-toolkit = "^3.0.50"
|
|
rich = "^14.0.0"
|
|
python-dotenv = "^1.0.1"
|
|
openpyxl = "^3.1.5"
|
|
pywry = "^0.6.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|