-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (44 loc) · 1.22 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (44 loc) · 1.22 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "quant-platform-kit"
version = "1.0.0"
description = "QuantStrategyLab shared runtime: broker adapters, domain models, execution ports, cloud provider abstraction, and notification utilities."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "QuantStrategyLab" }
]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"ruff",
"jsonschema>=4.18,<5",
"numpy",
"pandas",
]
[project.scripts]
quant-lifecycle = "quant_platform_kit.strategy_lifecycle.cli:main"
quant-strategy-spec = "quant_platform_kit.strategy_spec.cli:main"
quant-adaptive-selection = "quant_platform_kit.adaptive_allocation.cli:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
quant_platform_kit = ["schemas/*.json"]
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
ignore = ["E701", "E702", "E741", "F841", "F821", "B008", "F401", "F601", "E402"]
[tool.coverage.run]
branch = true
source = ["src"]
omit = ["tests/*", "*/external/*"]
[tool.coverage.report]
show_missing = true