-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpyproject.toml
More file actions
121 lines (111 loc) · 3.1 KB
/
pyproject.toml
File metadata and controls
121 lines (111 loc) · 3.1 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[project]
name = "vibe-trading-ai"
version = "0.1.8"
description = "Natural-language finance research AI agent with backtesting"
requires-python = ">=3.11"
license = "MIT"
readme = "README.md"
authors = [
{name = "HKUDS", email = "hkuds@connect.hku.hk"},
]
keywords = ["finance", "trading", "backtesting", "agent", "swarm", "quantitative"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial :: Investment",
]
dependencies = [
"rich>=13.0.0",
"pyyaml>=6.0.0",
"langchain>=0.1.0",
"langchain-core>=0.1.0",
"langchain-openai>=0.0.5",
"langgraph>=0.2.50,<0.3",
"langgraph-checkpoint>=2.0.0",
"python-dotenv>=1.0.0",
"httpx>=0.28.0",
"oauth-cli-kit>=0.1.3",
"pandas>=2.0.0",
"openpyxl>=3.1.0",
"python-docx>=1.1.0",
"python-pptx>=0.6.23",
"pypdfium2>=4.0.0",
"Pillow>=10.0.0",
"numpy>=1.24.0",
"scipy>=1.10.0",
"duckdb>=1.2.0",
"scikit-learn>=1.3.0",
"joblib>=1.3.0",
"smartmoneyconcepts>=0.0.1",
"pyharmonics>=1.5.0",
"tushare>=1.2.89",
"requests>=2.31.0",
"yfinance>=0.2.30",
"akshare>=1.12.0",
"ccxt>=4.0.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
"python-multipart>=0.0.18",
"sse-starlette>=1.6.0",
"fastmcp>=2.0.0",
"ddgs>=6.0.0",
"jinja2>=3.1.0",
"matplotlib>=3.7.0",
"weasyprint>=60.0",
"prompt_toolkit>=3.0.0",
]
[project.urls]
Homepage = "https://vibetrading.wiki/"
Documentation = "https://vibetrading.wiki/docs/"
Repository = "https://github.com/HKUDS/Vibe-Trading"
Issues = "https://github.com/HKUDS/Vibe-Trading/issues"
[project.scripts]
vibe-trading = "cli:main"
vibe-trading-mcp = "mcp_server:main"
[tool.setuptools]
package-dir = {"" = "agent"}
py-modules = ["api_server", "mcp_server"]
[tool.setuptools.packages.find]
where = ["agent"]
include = ["src*", "backtest*", "cli*"]
[tool.setuptools.package-data]
"src" = [
"skills/**/*.md",
"skills/**/*.yaml",
"skills/**/*.json",
"providers/*.json",
"swarm/presets/*.yaml",
"shadow_account/templates/*.j2",
"shadow_account/templates/*.html",
"shadow_account/templates/*.css",
]
"backtest" = ["*.py"]
"src.factors" = ["zoo/**/*.yaml", "zoo/**/*.md", "zoo/**/NOTICE"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"pytest-socket>=0.7.0",
]
[tool.pytest.ini_options]
testpaths = ["agent/tests"]
pythonpath = ["agent"]
markers = [
"unit: Unit tests (fast, no network)",
"integration: Integration tests (may need network)",
]
[tool.ruff]
target-version = "py311"
line-length = 120
src = ["agent"]
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
# Alpha zoo files import the full src.factors.base surface verbatim
# to match research-paper formulas. F401 (unused-import) is noise here;
# F841 (unused-local-variable) stays active to catch real formula bugs.
"agent/src/factors/zoo/**/*.py" = ["F401"]