-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (52 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
62 lines (52 loc) · 1.42 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcpstore"
version = "1.5.18"
description = "A composable, ready-to-use MCP toolkit for agents and rapid integration."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"exceptiongroup>=1.2.2",
"httpx>=0.28.1",
"mcp>=1.24.0,<2.0",
"platformdirs>=4.0.0",
"pydocket>=0.16.3",
"rich>=13.9.4",
"authlib>=1.6.5",
"pydantic[email]>=2.11.7",
"packaging>=23.0",
"py-key-value-aio>=0.3.0",
"uvicorn>=0.35",
"websockets>=15.0.1",
"jsonschema-path>=0.3.4",
"jsonref>=1.1.0",
"toml>=0.10.2",
"watchdog>=6.0.0",
]
authors = [
{name = "ooooofish", email = "ooooofish@126.com"}
]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/whillhill/mcpstore"
"Bug Tracker" = "https://github.com/whillhill/mcpstore/issues"
[project.scripts]
mcpstore = "mcpstore.cli.main:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["*test*"]
[[tool.uv.index]]
url = "https://mirrors.aliyun.com/pypi/simple"
default = true