-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.86 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (53 loc) · 1.86 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "printmcp"
version = "0.1.0"
description = "MCP server for automating the 3D printing pipeline: search/download models (Thingiverse), slice to G-code (Cura), and manage printing (OctoPrint)."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [{ name = "SourceBox LLC" }]
keywords = ["mcp", "3d-printing", "thingiverse", "cura", "octoprint", "slicer", "gcode"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Printing",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"mcp>=1.2.0",
"httpx>=0.27",
"python-dotenv>=1.0",
"anyio>=4.0",
]
[project.urls]
Homepage = "https://github.com/SourceBox-LLC/PrintMCP"
Repository = "https://github.com/SourceBox-LLC/PrintMCP"
Documentation = "https://github.com/SourceBox-LLC/PrintMCP/tree/master/docs"
Issues = "https://github.com/SourceBox-LLC/PrintMCP/issues"
[dependency-groups]
dev = ["pytest>=8.0", "ruff>=0.10"]
[project.scripts]
printmcp = "printmcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/printmcp"]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
# pycodestyle errors, pyflakes, isort, pep8-naming, pyupgrade, flake8-bugbear.
select = ["E", "F", "I", "N", "UP", "B"]
# Long lines are handled by the formatter; don't double-flag them.
ignore = ["E501"]