24 lines
496 B
TOML
24 lines
496 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "quant-os"
|
|
version = "0.2.0"
|
|
description = "Evidence-driven A-share research, backtest and controlled-production operating system"
|
|
requires-python = ">=3.10"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
quant-os = "quant_os.cli:main"
|
|
quant60 = "quant60.cli:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.unittest]
|
|
start-directory = "tests"
|