-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 1.12 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (31 loc) · 1.12 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "quant-advisor-research"
version = "0.1.3"
description = "Intelligent advisory research system for QuantStrategyLab."
readme = "README.md"
requires-python = ">=3.11"
dependencies = []
license = { text = "MIT" }
[project.optional-dependencies]
test = ["pytest>=8"]
[project.scripts]
qar-build-advisory-report = "quant_advisor_research.advisory_report:main"
qar-build-advisory-artifacts = "quant_advisor_research.build_pipeline:main"
qar-build-market-confirmation = "quant_advisor_research.market_confirmation:main"
qar-build-recommendation-review = "quant_advisor_research.recommendation_review:main"
qar-backfill-site-archive = "quant_advisor_research.archive_backfill:main"
qar-run-cross-repo-smoke = "quant_advisor_research.cross_repo_smoke:main"
qar-publish-advisory-site = "quant_advisor_research.publisher:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
line-length = 120