mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-06-21 21:42:52 +08:00
* update dev_install * fix effr test * Update dev_install.py * fix fundamental balance test * fix equity price historical test * fix price target model * black * rebuild static files * update publish.md * fixed dev_install * update publishing doc * updated `openbb-core` to 1.1.1 * updated extensions * updated providers * updated `openbb` package * updated static extension map * updated publishing doc * fixed toml for `openbb-finra` * @jmaslek yfinance IS DEFAULT * updated static --------- Co-authored-by: Pratyush Shukla <ps4534@nyu.edu> Co-authored-by: hjoaquim <h.joaquim@campus.fct.unl.pt>
27 lines
678 B
TOML
Vendored
27 lines
678 B
TOML
Vendored
[tool.poetry]
|
|
name = "openbb-charting"
|
|
version = "1.1.1"
|
|
description = "Charting extension for OpenBB"
|
|
authors = ["OpenBB Team <hello@openbb.co>"]
|
|
readme = "README.md"
|
|
packages = [{ include = "openbb_charting" }]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8,<3.12" # scipy forces python <4.0 explicitly
|
|
scipy = "^1.10.0"
|
|
plotly = "^5.17.0"
|
|
statsmodels = "^0.14.0"
|
|
reportlab = "^4.0.4"
|
|
pywry = "^0.6.1"
|
|
svglib = "^1.5.1"
|
|
nbformat = "^5.9.2"
|
|
pandas-ta = "^0.3.14b"
|
|
openbb-core = "^1.1.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.plugins."openbb_core_extension"]
|
|
openbb_charting = "openbb_charting.charting_router:router"
|