-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 975 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (39 loc) · 975 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>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "microstructure-alpha-execution-lab"
version = "0.1.0"
description = "Market microstructure alpha research and execution simulation lab."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.26",
"pandas>=2.1",
"scikit-learn>=1.3",
"pyarrow>=14.0",
"PyYAML>=6.0",
"matplotlib>=3.8",
"lightgbm>=4.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"ruff>=0.5",
]
[project.scripts]
microalpha-smoke = "microalpha.cli:main"
microalpha-ingest = "microalpha.data.ingest_cli:main"
microalpha-qa = "microalpha.data.qa_cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
pythonpath = ["src"]
[tool.ruff]
line-length = 100
target-version = "py311"
src = ["src", "tests", "scripts"]
[tool.ruff.lint]
select = ["E", "F", "I", "B"]