-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 968 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
[project]
name = "hft-qr-rl"
version = "0.1.0"
description = "Application de l'apprentissage par renforcement pour le contrôle optimal des files d'attente QR réactives dans le trading haute fréquence"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"databento>=0.13.0",
"flask-cors>=5.0.0",
"flask>=3.0.3",
"ipykernel>=6.29.5",
"matplotlib>=3.8.4",
"nbformat>=5.10.4",
"numpy==1.21.2",
"pandas>=1.5.1",
"plotly>=5.24.1",
"polars>=1.12.0",
"pyarrow>=18.0.0",
"requests>=2.32.3",
"ruff>=0.7.1",
"scikit-learn>=1.5.2",
"seaborn>=0.13.2",
"setuptools>=75.3.0",
"tach>=0.14.1",
"tqdm>=4.66.6",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"QR1" = "models/QR1/", "QR2" = "models/QR2/"}
packages = ["QR1", "QR2"]
[tool.setuptools.package-data]
"*" = ["*.py", "*.pyi", "*.c", "*.h", "*.cpp", "*.hpp"]