forked from DarkLink/QuantPits
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 942 Bytes
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 942 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "quantpits"
version = "0.1.0"
description = "QuantPits: An advanced, production-ready quantitative trading system built on top of Microsoft Qlib."
authors = [
{name = "DarkLink"}
]
requires-python = ">=3.8, <3.13"
dependencies = [
"pyqlib",
"pandas>=1.3.0",
"numpy>=1.20.0,<2.0.0",
"scipy>=1.7.0",
"PyYAML>=5.4.1",
"joblib>=1.0.1",
"statsmodels>=0.13.0",
"streamlit>=1.10.0",
"plotly>=5.9.0",
"matplotlib>=3.5.0",
"seaborn>=0.11.0",
"tqdm>=4.60.0"
]
[tool.setuptools.packages.find]
include = ["quantpits*"]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0"
]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q --cov=quantpits --cov-report=term-missing"
testpaths = [
"tests",
]
pythonpath = [
"."
]