-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (42 loc) · 1007 Bytes
/
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
[tool.poetry]
name = "python-real-time-algo-trading-system"
version = "0.1.0"
description = "building a real time algo trading system in python"
authors = ["Hy <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
oandapyv20 = "^0.7.2"
pandas = "^2.2.1"
numpy = "^1.26.4"
scikit-learn = "^1.4.1.post1"
xgboost = "^2.0.3"
pandas-ta = "^0.3.14b0"
black = "^24.3.0"
flake8 = "^7.0.0"
isort = "^5.13.2"
docformatter = "^1.7.5"
pre-commit = "^3.7.0"
pytest = "^8.1.1"
streamlit = "^1.32.2"
ipykernel = "^6.29.4"
python-dotenv = "^1.0.1"
plotly = "^5.20.0"
shap = "^0.45.0"
matplotlib = "^3.8.3"
termcolor = "^2.4.0"
tensorflow = "^2.16.1"
seaborn = "^0.13.2"
gym = "^0.26.2"
gym-anytrading = "^2.0.0"
quantstats = "^0.0.62"
stable-baselines3 = "^2.2.1"
colorama = "^0.4.6"
loguru = "^0.7.2"
pyfolio = "^0.9.2"
bokeh = "^3.4.0"
nbformat = "^5.10.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"