-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.3 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcpm"
dynamic = ["version"]
description = "MCPM - Model Context Protocol Manager"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "MCPM Contributors" }]
maintainers = [{ name = "Path Integral Institute" }]
keywords = [
"MCPM",
"MCP",
"Model Context Protocol",
"Claude Desktop",
"Cursor",
"Windsurf",
]
dependencies = [
"click>=8.1.3",
"rich>=12.0.0",
"requests>=2.28.0",
"pydantic>=2.5.1",
"mcp>=1.6.0",
"ruamel-yaml>=0.18.10",
"watchfiles>=1.0.4",
"duckdb>=1.2.2",
"psutil>=7.0.0",
"prompt-toolkit>=3.0.0",
]
[project.urls]
Homepage = "https://mcpm.sh"
Repository = "https://github.com/pathintegral-institute/mcpm.sh"
Issues = "https://github.com/pathintegral-institute/mcpm.sh/issues"
[project.scripts]
mcpm = "mcpm.cli:main"
[tool.hatch.version]
path = "src/mcpm/version.py"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 120
fix = true
[tool.ruff.lint]
select = ["E", "F", "W", "Q", "I"]
fixable = ["ALL"]
ignore = ["E501"]
[dependency-groups]
dev = [
"ipython>=8.34.0",
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"ruff>=0.11.4",
"jsonschema>=4.23.0",
"openai>=1.72.0",
]