Files
OpenBB/openbb_platform/pyproject.toml
Danglewood ee422419d0 [Feature] EconDB Provider Extension With New Economy Endpoints. (#6313)
* economy router

* router endpoints

* update available_indicators

* add econdb provider extension

* black

* fetcher test

* country description

* recapture tests and router examples

* black

* codespell

* codespell skip

* codespell skip...?

* use . instead of * in codespell.skip?

* this is supposed to skip the file from codespell

* try another thing for codespell

* unused import

* pylint

* doc page example - df.filter needs axis

* unused argument

* more pylint

* mypy

* insert image to doc page

* recapture test

* description

* mypy

* Update .codespell.skip

* black

* linting..

* more linters

* black

* init docstring

* static files

---------

Co-authored-by: Igor Radovanovic <74266147+IgorWounds@users.noreply.github.com>
2024-04-22 16:45:56 +00:00

101 lines
2.8 KiB
TOML
Vendored

[tool.poetry]
name = "openbb"
version = "4.1.7"
description = "OpenBB"
authors = ["OpenBB Team <hello@openbb.co>"]
readme = "README.md"
packages = [{ include = "openbb" }]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
openbb-core = "^1.1.6"
openbb-benzinga = "^1.1.5"
openbb-econdb = "^1.0.0"
openbb-federal-reserve = "^1.1.5"
openbb-fmp = "^1.1.5"
openbb-fred = "^1.1.5"
openbb-intrinio = "^1.1.5"
openbb-oecd = "^1.1.5"
openbb-polygon = "^1.1.5"
openbb-sec = "^1.1.5"
openbb-tiingo = "^1.1.5"
openbb-tradingeconomics = "^1.1.5"
openbb-yfinance = "^1.1.5"
openbb-commodity = "^1.0.4"
openbb-crypto = "^1.1.5"
openbb-currency = "^1.1.5"
openbb-derivatives = "^1.1.5"
openbb-economy = "^1.1.5"
openbb-equity = "^1.1.5"
openbb-etf = "^1.1.5"
openbb-fixedincome = "^1.1.5"
openbb-index = "^1.1.5"
openbb-news = "^1.1.5"
openbb-regulators = "^1.1.5"
# Community dependencies
openbb-alpha-vantage = { version = "^1.1.5", optional = true }
openbb-biztoc = { version = "^1.1.5", optional = true }
openbb-cboe = { version = "^1.1.5", optional = true }
openbb-ecb = { version = "^1.1.5", optional = true }
openbb-finra = { version = "^1.1.5", optional = true }
openbb-finviz = { version = "^1.0.4", optional = true }
openbb-government-us = { version = "^1.1.5", optional = true }
openbb-nasdaq = { version = "^1.1.5", optional = true }
openbb-seeking-alpha = { version = "^1.1.5", optional = true }
openbb-stockgrid = { version = "^1.1.5", optional = true }
openbb-tmx = { version = "^1.0.2", optional = true }
openbb-tradier = { version = "^1.0.2", optional = true }
openbb-wsj = { version = "^1.1.5", optional = true }
openbb-charting = { version = "^2.0.3", optional = true }
openbb-econometrics = { version = "^1.1.5", optional = true }
openbb-quantitative = { version = "^1.1.5", optional = true }
openbb-technical = { version = "^1.1.6", optional = true }
[tool.poetry.extras]
alpha_vantage = ["openbb-alpha-vantage"]
biztoc = ["openbb-biztoc"]
cboe = ["openbb-cboe"]
charting = ["openbb-charting"]
ecb = ["openbb-ecb"]
econometrics = ["openbb-econometrics"]
finra = ["openbb-finra"]
finviz = ["openbb-finviz"]
government_us = ["openbb-government-us"]
nasdaq = ["openbb-nasdaq"]
quantitative = ["openbb-quantitative"]
seeking_alpha = ["openbb-seeking-alpha"]
stockgrid = ["openbb-stockgrid"]
technical = ["openbb-technical"]
tmx = ["openbb-tmx"]
tradier = ["openbb-tradier"]
wsj = ["openbb-wsj"]
all = [
"openbb-alpha-vantage",
"openbb-biztoc",
"openbb-cboe",
"openbb-charting",
"openbb-ecb",
"openbb-econometrics",
"openbb-finra",
"openbb-finviz",
"openbb-government-us",
"openbb-nasdaq",
"openbb-quantitative",
"openbb-seeking-alpha",
"openbb-stockgrid",
"openbb-technical",
"openbb-tmx",
"openbb-tradier",
"openbb-wsj",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"