-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (82 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
90 lines (82 loc) · 1.94 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "valuecell"
version = "0.1.20"
description = "ValueCell is a community-driven, multi-agent platform for financial applications."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"python-okx>=0.4.0",
"pytz>=2023.3",
"python-dateutil>=2.8.2",
"fastapi>=0.104.0",
"pydantic>=2.0.0",
"uvicorn>=0.24.0",
"a2a-sdk[http-server]>=0.3.4",
"yfinance>=0.2.65",
"requests>=2.32.5",
"akshare>=1.17.87",
"agno[openai, google, lancedb, ollama]>=2.0,<3.0",
"edgartools>=4.12.2",
"sqlalchemy>=2.0.43",
"aiosqlite>=0.19.0",
"unstructured>=0.18.15",
"markdown>=3.9",
"loguru>=0.7.3",
"aiofiles>=24.1.0",
"crawl4ai>=0.7.4",
"ccxt>=4.5.15",
"baostock>=0.8.9",
"func-timeout>=4.3.5",
"pymysql>=1.1.0"
]
[project.optional-dependencies]
dev = [
"ruff",
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=1.0.0",
"diff-cover>=9.0.0",
]
[dependency-groups]
dev = [
{ include-group = "lint" },
{ include-group = "style" },
{ include-group = "test" },
]
lint = ["ruff"]
style = ["ruff", "isort"]
test = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=1.0.0",
"diff-cover>=9.0.0",
]
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py312"
force-exclude = true
exclude = ["venv", "build", "dist", "node_modules", "site-packages"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.hatch.build.targets.wheel]
include = ["valuecell"]
exclude = [
"tests/**",
"**/tests/**",
"examples/**",
"**/examples/**",
"docs/**",
"**/docs/**",
]
[tool.pytest.ini_options]
norecursedirs = [".venv", "venv", "build", "dist", "logs", "examples", "docs"]
[tool.isort]
profile = "black"
skip_glob = ["tests/**", "**/tests/**", "docs/**", "**/docs/**"]