forked from OpenBB-finance/LegacyCLI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
99 lines (90 loc) · 2.79 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[tool.poetry]
name = "openbb"
version = "4.1.5"
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.3"
openbb-benzinga = "^1.1.3"
openbb-federal-reserve = "^1.1.3"
openbb-fmp = "^1.1.3"
openbb-fred = "^1.1.3"
openbb-intrinio = "^1.1.3"
openbb-oecd = "^1.1.3"
openbb-polygon = "^1.1.3"
openbb-sec = "^1.1.3"
openbb-tiingo = "^1.1.3"
openbb-tradingeconomics = "^1.1.3"
openbb-yfinance = "^1.1.3"
openbb-commodity = "^1.0.1"
openbb-crypto = "^1.1.3"
openbb-currency = "^1.1.3"
openbb-derivatives = "^1.1.3"
openbb-economy = "^1.1.3"
openbb-equity = "^1.1.3"
openbb-etf = "^1.1.3"
openbb-fixedincome = "^1.1.3"
openbb-index = "^1.1.3"
openbb-news = "^1.1.3"
openbb-regulators = "^1.1.3"
# Community dependencies
openbb-alpha-vantage = { version = "^1.1.3", optional = true }
openbb-biztoc = { version = "^1.1.3", optional = true }
openbb-cboe = { version = "^1.1.3", optional = true }
openbb-ecb = { version = "^1.1.3", optional = true }
openbb-finra = { version = "^1.1.3", optional = true }
openbb-finviz = { version = "^1.0.2", optional = true }
openbb-government-us = { version = "^1.1.3", optional = true }
openbb-nasdaq = { version = "^1.1.3", optional = true }
openbb-seeking-alpha = { version = "^1.1.3", optional = true }
openbb-stockgrid = { version = "^1.1.3", optional = true }
openbb-tmx = { version = "^1.0.0", optional = true }
openbb-tradier = { version = "^1.0.0", optional = true }
openbb-wsj = { version = "^1.1.3", optional = true }
openbb-charting = { version = "^2.0.1", optional = true }
openbb-econometrics = { version = "^1.1.3", optional = true }
openbb-quantitative = { version = "^1.1.3", optional = true }
openbb-technical = { version = "^1.1.4", 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"