-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (48 loc) · 1.4 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
[project]
name = "qmtcli"
version = "0.4.0"
description = "AI-native local JSON CLI bridge for QMT/XtQuant market data and guarded stock trading."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "2233admin" }]
dependencies = []
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business :: Financial :: Investment",
]
[project.urls]
Homepage = "https://github.com/2233admin/qmtcli"
Repository = "https://github.com/2233admin/qmtcli"
Issues = "https://github.com/2233admin/qmtcli/issues"
[project.optional-dependencies]
dev = ["pytest>=8.0", "ruff>=0.4", "numpy>=2.4.6", "pandas>=3.0.3"]
sdk = ["xtquant", "pandas", "numpy"]
mcp = ["mcp>=1.0"]
[project.scripts]
qmtcli = "qmtcli.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/qmtcli"]
[tool.hatch.build.targets.wheel.force-include]
"src/qmtcli/xtdata_fields.json" = "qmtcli/xtdata_fields.json"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[dependency-groups]
dev = [
"pytest>=8.0",
"ruff>=0.4",
"numpy>=2.4.6",
"pandas>=3.0.3",
"mcp>=1.0",
]