forked from aahl/mcp-aktools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 1 KB
/
pyproject.toml
File metadata and controls
50 lines (41 loc) · 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
[project]
name = "aktools-pro"
dynamic = ["version"]
description = "MCP Server for stock and crypto"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["aktools", "akshare", "stock", "trading", "mcp", "llm"]
license = { text = "MIT" }
dependencies = [
"akshare>=1.17.0",
"cachetools>=6.2.0",
"diskcache>=5.6.0",
"fastmcp>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/tchivs/mcp-aktools"
Repository = "https://github.com/tchivs/mcp-aktools.git"
[project.scripts]
aktools-pro = "mcp_aktools:main"
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "N"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["mcp_aktools"]