-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.12 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
[tool.poetry]
name = "investing-algorithm-framework"
version = "v6.2.0"
description = "A framework for creating trading bots"
authors = ["MDUYN"]
readme = "README.md"
exclude = ["tests", "static", "examples", "docs"]
[tool.poetry.dependencies]
python = ">=3.9"
wrapt = ">=1.16.0"
Flask = ">=2.3.2"
Flask-Migrate = ">=2.6.0"
Flask-Cors = ">=3.0.9,<5.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"
[tool.poetry.group.test.dependencies]
coverage= "7.4.2"
flake8 = "7.0.0"
Flask-Testing = "^0.8.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"