-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.06 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rope-mcp-server"
version = "0.1.2"
description = "MCP server for Python refactoring via Rope library"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [{name = "Krystof"}]
keywords = ["mcp", "rope", "refactoring", "python", "claude"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Code Generators",
]
dependencies = [
"fastmcp>=2.14.3",
"rope>=1.14.0",
]
[project.scripts]
rope-mcp-server = "rope_mcp_server.server:main"
[project.urls]
Homepage = "https://github.com/krystofbe/rope-mcp-server"
Repository = "https://github.com/krystofbe/rope-mcp-server"
[tool.hatch.build.targets.wheel]
packages = ["src/rope_mcp_server"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
]