-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (72 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
85 lines (72 loc) · 2.21 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-clipboard"
version = "2.2.1"
description = "MCP server that reads and writes the system clipboard — tables, text, code, JSON, URLs, images, and more."
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
{name = "Chris Means", email = "chris.a.means@gmail.com"},
]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
]
keywords = ["clipboard", "mcp", "claude", "paste", "spreadsheet", "table"]
dependencies = [
"mcp[cli]>=1.2.0",
]
[project.scripts]
mcp-clipboard = "mcp_clipboard.server:main"
[project.urls]
Homepage = "https://github.com/cmeans/mcp-clipboard"
Repository = "https://github.com/cmeans/mcp-clipboard"
Issues = "https://github.com/cmeans/mcp-clipboard/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=7.0",
"ruff>=0.11",
"mypy>=1.15",
]
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_clipboard"]
artifacts = ["src/mcp_clipboard/instructions/*.md", "src/mcp_clipboard/icons/*.svg", "src/mcp_clipboard/py.typed"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = ["integration: requires real clipboard tools (skipped by default)"]
addopts = "-m 'not integration'"
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM", "RUF"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["E402", "E501", "SIM117"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
[[tool.mypy.overrides]]
module = "mcp.*"
ignore_missing_imports = true
[tool.coverage.run]
source = ["mcp_clipboard"]
[tool.coverage.report]
show_missing = true
skip_empty = true