mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-10 00:08:17 +08:00
* add finviz provider * recapture tests * recapture tests again? * invalid test param * static packages * units_measurement -> unit_measurement * static packages as core only * openbb_core version bump in pyproject.toml * try adding user-agent to test response * fix tests * linting * provider model cosmetic changes * fix install script and typo in openbb toml * static * fix: re-record unittests * empty data error * definitions as a file --------- Co-authored-by: Igor Radovanovic <74266147+IgorWounds@users.noreply.github.com> Co-authored-by: Pratyush Shukla <ps4534@nyu.edu> Co-authored-by: Diogo Sousa <montezdesousa@gmail.com>
93 lines
2.6 KiB
TOML
Vendored
93 lines
2.6 KiB
TOML
Vendored
[tool.poetry]
|
|
name = "openbb"
|
|
version = "4.1.3"
|
|
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.1"
|
|
|
|
openbb-benzinga = "^1.1.1"
|
|
openbb-federal-reserve = "^1.1.1"
|
|
openbb-fmp = "^1.1.1"
|
|
openbb-fred = "^1.1.1"
|
|
openbb-intrinio = "^1.1.1"
|
|
openbb-oecd = "^1.1.1"
|
|
openbb-polygon = "^1.1.1"
|
|
openbb-sec = "^1.1.1"
|
|
openbb-tiingo = "^1.1.1"
|
|
openbb-tradingeconomics = "^1.1.1"
|
|
openbb-yfinance = "^1.1.1"
|
|
|
|
openbb-crypto = "^1.1.1"
|
|
openbb-currency = "^1.1.1"
|
|
openbb-derivatives = "^1.1.1"
|
|
openbb-economy = "^1.1.1"
|
|
openbb-equity = "^1.1.1"
|
|
openbb-etf = "^1.1.1"
|
|
openbb-fixedincome = "^1.1.1"
|
|
openbb-index = "^1.1.1"
|
|
openbb-news = "^1.1.1"
|
|
openbb-regulators = "^1.1.1"
|
|
|
|
# Community dependencies
|
|
openbb-alpha-vantage = { version = "^1.1.1", optional = true }
|
|
openbb-biztoc = { version = "^1.1.1", optional = true }
|
|
openbb-cboe = { version = "^1.1.1", optional = true }
|
|
openbb-ecb = { version = "^1.1.1", optional = true }
|
|
openbb-finra = { version = "^1.1.1", optional = true }
|
|
openbb-finviz = { version = "^1.1.0", optional = true }
|
|
openbb-government-us = { version = "^1.1.1", optional = true }
|
|
openbb-nasdaq = { version = "^1.1.2", optional = true }
|
|
openbb-seeking-alpha = { version = "^1.1.1", optional = true }
|
|
openbb-stockgrid = { version = "^1.1.1", optional = true }
|
|
openbb-wsj = { version = "^1.1.1", optional = true }
|
|
|
|
openbb-charting = { version = "^1.1.1", optional = true }
|
|
openbb-econometrics = { version = "^1.1.1", optional = true }
|
|
openbb-quantitative = { version = "^1.1.1", optional = true }
|
|
openbb-technical = { version = "^1.1.2", 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"]
|
|
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-wsj",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|