mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-06 14:03:15 +08:00
* delete frontend-components * lint * lint * lint * black * black * lint * fix a test * some touchups * readme updates * codespell * linters * classVar * cli pyproject and lock
32 lines
768 B
TOML
Vendored
32 lines
768 B
TOML
Vendored
[tool.poetry]
|
|
name = "openbb-cli"
|
|
version = "1.4.1"
|
|
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.7.1", extras = ["all"] }
|
|
|
|
# CLI dependencies
|
|
prompt-toolkit = "^3.0.50"
|
|
rich = "^14.0.0"
|
|
python-dotenv = "^1.0.1"
|
|
openpyxl = "^3.1.5"
|
|
pywry = ">=2.0.0rc7"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|