-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 1.06 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "openalphastack"
version = "0.1.0"
description = "Open-source Codex plugin stack for auditable A-share research and paper trading"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.2.0,<2.0.0",
"pydantic>=2.10.0,<3.0.0",
"python-dotenv==1.0.1",
"pandas>=2.2.0",
"requests>=2.32.0",
]
[project.optional-dependencies]
market = [
"akshare>=1.16.0",
]
engine = [
"pyarrow>=16.0.0",
]
dashboard = [
"akshare>=1.16.0",
"fastapi==0.115.6",
"uvicorn==0.34.0",
"pyarrow>=16.0.0",
]
public = [
"akshare>=1.16.0",
"uvicorn>=0.34.0,<1.0.0",
]
feishu = [
"httpx==0.28.1",
"lark-oapi>=1.4.0",
]
all = [
"akshare>=1.16.0",
"pyarrow>=16.0.0",
"fastapi==0.115.6",
"uvicorn==0.34.0",
"httpx==0.28.1",
"lark-oapi>=1.4.0",
]
[project.scripts]
openalphastack = "openalphastack.app.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src", "."]
testpaths = ["tests"]