-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (57 loc) · 1.18 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "apex-trading-engine"
version = "0.1.0"
description = "Event-driven quantitative trading framework with deterministic synthetic data and simulated execution."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Apex Trading Engine Contributors" }
]
dependencies = [
"numpy>=1.26",
"pandas>=2.2",
"polars>=1.0",
"pyarrow>=16.0",
"pydantic>=2.7",
"pydantic-settings>=2.3",
"typer>=0.12",
"rich>=13.7",
"PyYAML>=6.0",
"loguru>=0.7",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2",
"pytest-cov>=5.0",
"ruff>=0.5",
"mypy>=1.10",
]
analytics = [
"scipy>=1.13",
"scikit-learn>=1.5",
"statsmodels>=0.14",
"plotly>=5.22",
"streamlit>=1.36",
"duckdb>=1.0",
]
api = [
"fastapi>=0.111",
"uvicorn>=0.30",
"httpx>=0.27",
]
[project.scripts]
apex = "apex_engine.cli:main"
[tool.setuptools.packages.find]
where = ["python"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["python"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]