-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (81 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
86 lines (81 loc) · 1.63 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kronos-fincept-lab"
version = "2.0.0"
description = "Independent Python + Web financial quantitative analysis platform powered by Kronos."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pandas>=2.0",
"numpy>=1.24",
]
[project.optional-dependencies]
api = [
"fastapi>=0.100",
"uvicorn[standard]>=0.22",
"pydantic>=2.0",
"python-multipart>=0.0.6",
]
kronos = [
"torch>=2.0",
"huggingface-hub>=0.20",
"einops>=0.8",
"safetensors>=0.6",
"tqdm>=4.67",
]
astock = [
"akshare>=1.10",
"baostock>=0.8.8",
"yfinance>=0.2",
"requests>=2.31",
]
cli = [
"click>=8.0",
"rich>=13.0",
]
mcp = [
"mcp>=1.0",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.21",
"httpx>=0.24",
]
deploy = [
"fastapi>=0.100",
"uvicorn[standard]>=0.22",
"pydantic>=2.0",
"python-multipart>=0.0.6",
"akshare>=1.10",
"baostock>=0.8.8",
"yfinance>=0.2",
"requests>=2.31",
"scipy>=1.10",
]
deploy-model = [
"fastapi>=0.100",
"uvicorn[standard]>=0.22",
"pydantic>=2.0",
"python-multipart>=0.0.6",
"akshare>=1.10",
"baostock>=0.8.8",
"yfinance>=0.2",
"requests>=2.31",
"torch>=2.0",
"huggingface-hub>=0.20",
"einops>=0.8",
"safetensors>=0.6",
"tqdm>=4.67",
"scipy>=1.10",
]
[project.scripts]
kronos-api = "kronos_fincept.api.app:main"
kronos = "kronos_fincept.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
asyncio_mode = "auto"