-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) · 1.62 KB
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
[tool.poetry]
name = "investing-algorithm-framework"
version = "v8.10.0"
description = "A framework for creating trading bots"
authors = ["MDUYN"]
readme = "README.md"
exclude = ["tests", "static", "examples", "docs"]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
wrapt = ">=1.16.0"
Flask = ">=3.1.0"
Flask-Migrate = ">=2.6.0"
Flask-Cors = ">=3.0.9,<7.0.0"
SQLAlchemy = ">=2.0.18"
marshmallow = ">=3.5.0"
ccxt = ">=4.2.48"
python-dateutil = ">=2.8.2"
dependency-injector= ">=4.40.0"
schedule = ">=1.1.0"
tqdm = ">=4.66.1"
tabulate = ">=0.9.0"
polars = { version = ">=0.20.10", extras = ["numpy", "pandas"] }
jupyter = ">=1.0.0"
azure-storage-blob = "^12.24.0"
azure-identity = "^1.19.0"
azure-mgmt-storage = "^21.2.1"
azure-mgmt-web = "^7.3.1"
azure-mgmt-resource = "^23.2.0"
python-dotenv = "^1.0.1"
yfinance = {version = "^0.2.61", optional = true}
alpha_vantage = {version = "^3.0.0", optional = true}
polygon-api-client = {version = "^1.14.0", optional = true}
plotly = "^6.1.2"
boto3 = "^1.38.41"
msgpack = ">=1.0.0"
zstandard = ">=0.20.0"
pyarrow = ">=14.0.0"
[tool.poetry.extras]
yahoo = ["yfinance"]
alpha_vantage = ["alpha_vantage"]
polygon = ["polygon-api-client"]
all = ["yfinance", "alpha_vantage", "polygon-api-client"]
[tool.poetry.group.test.dependencies]
coverage= "7.4.2"
flake8 = "7.0.0"
Flask-Testing = "^0.8.1"
pyindicators = "0.11.1"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
investing-algorithm-framework = "investing_algorithm_framework.cli.cli:cli"
[tool.coverage.run]
omit = ["*/dependency_injector/*"]