mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-08 06:51:32 +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
26 lines
664 B
TOML
Vendored
26 lines
664 B
TOML
Vendored
[tool.poetry]
|
|
name = "openbb-charting"
|
|
version = "3.0.0"
|
|
description = "Charting extension for OpenBB"
|
|
authors = ["OpenBB Team <hello@openbb.co>"]
|
|
license = "AGPL-3.0-only"
|
|
readme = "README.md"
|
|
packages = [{ include = "openbb_charting" }]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10,<4" # scipy forces python <4.0 explicitly
|
|
openbb-core = "^1.6.8"
|
|
pandas-ta-openbb = "^0.4.24"
|
|
plotly = "^6.3.1"
|
|
pywry = { version = ">=2.0.0rc7", optional = true }
|
|
|
|
[tool.poetry.extras]
|
|
pywry = ["pywry"]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.plugins."openbb_obbject_extension"]
|
|
openbb_charting = "openbb_charting:ext"
|