mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-06 22:12:12 +08:00
118 lines
3.4 KiB
TOML
Vendored
118 lines
3.4 KiB
TOML
Vendored
[tool.poetry]
|
|
name = "openbb"
|
|
version = "4.7.1"
|
|
description = "Investment research for everyone, anywhere."
|
|
authors = ["OpenBB Team <hello@openbb.co>"]
|
|
license = "AGPL-3.0-only"
|
|
readme = "README.md"
|
|
|
|
packages = [{ include = "openbb", from = "core" }]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10,<4"
|
|
openbb-core = "^1.6.7"
|
|
openbb-platform-api = "^1.3.5"
|
|
|
|
openbb-benzinga = "^1.6.0"
|
|
openbb-bls = "^1.3.0"
|
|
openbb-cftc = "^1.3.0"
|
|
openbb-congress-gov = "^1.2.2"
|
|
openbb-econdb = "^1.5.0"
|
|
openbb-federal-reserve = "^1.6.1"
|
|
openbb-fmp = "^1.6.0"
|
|
openbb-fred = "^1.6.0"
|
|
openbb-government-us = "^1.6.0"
|
|
openbb-imf = "^2.1.2"
|
|
openbb-intrinio = "^1.6.0"
|
|
openbb-oecd = "^1.6.0"
|
|
openbb-sec = "^1.6.0"
|
|
openbb-tiingo = "^1.6.0"
|
|
openbb-tradingeconomics = "^1.6.0"
|
|
openbb-us-eia = "^1.3.0"
|
|
openbb-yfinance = "^1.6.1"
|
|
|
|
openbb-commodity = "^1.5.1"
|
|
openbb-crypto = "^1.6.1"
|
|
openbb-currency = "^1.6.1"
|
|
openbb-derivatives = "^1.6.1"
|
|
openbb-economy = "^1.6.1"
|
|
openbb-equity = "^1.6.1"
|
|
openbb-etf = "^1.6.1"
|
|
openbb-fixedincome = "^1.6.1"
|
|
openbb-index = "^1.6.1"
|
|
openbb-news = "^1.6.1"
|
|
openbb-regulators = "^1.6.1"
|
|
|
|
# Community dependencies
|
|
openbb-alpha-vantage = { version = "^1.6.0", optional = true }
|
|
openbb-biztoc = { version = "^1.6.0", optional = true }
|
|
openbb-cboe = { version = "^1.6.0", optional = true }
|
|
openbb-deribit = { version = "^1.2.0", optional = true }
|
|
openbb-ecb = { version = "^1.6.0", optional = true }
|
|
openbb-famafrench = { version = "^1.2.0", optional = true }
|
|
openbb-finra = { version = "^1.6.0", optional = true }
|
|
openbb-finviz = { version = "^1.5.0", optional = true }
|
|
openbb-multpl = { version = "^1.3.0", optional = true }
|
|
openbb-nasdaq = { version = "^1.6.1", optional = true }
|
|
openbb-seeking-alpha = { version = "^1.6.0", optional = true }
|
|
openbb-stockgrid = { version = "^1.6.0", optional = true }
|
|
openbb-tmx = { version = "^1.5.1", optional = true }
|
|
openbb-tradier = { version = "^1.5.0", optional = true }
|
|
openbb-wsj = { version = "^1.6.0", optional = true }
|
|
|
|
openbb-charting = { version = "^2.5.1", optional = true }
|
|
openbb-econometrics = { version = "^1.7.1", optional = true }
|
|
openbb-quantitative = { version = "^1.6.1", optional = true }
|
|
openbb-technical = { version = "^1.6.1", optional = true }
|
|
openbb-mcp-server = { version = "^1.4.0", optional = true }
|
|
|
|
[tool.poetry.extras]
|
|
alpha_vantage = ["openbb-alpha-vantage"]
|
|
biztoc = ["openbb-biztoc"]
|
|
cboe = ["openbb-cboe"]
|
|
charting = ["openbb-charting"]
|
|
deribit = ["openbb-deribit"]
|
|
ecb = ["openbb-ecb"]
|
|
econometrics = ["openbb-econometrics"]
|
|
famafrench = ["openbb-famafrench"]
|
|
finra = ["openbb-finra"]
|
|
finviz = ["openbb-finviz"]
|
|
mcp_server = ["openbb-mcp-server"]
|
|
nasdaq = ["openbb-nasdaq"]
|
|
multpl = ["openbb-multpl"]
|
|
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-deribit",
|
|
"openbb-ecb",
|
|
"openbb-econometrics",
|
|
"openbb-famafrench",
|
|
"openbb-finra",
|
|
"openbb-finviz",
|
|
"openbb-mcp-server",
|
|
"openbb-multpl",
|
|
"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"
|