-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (66 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (66 loc) · 1.7 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
[build-system]
requires = ["uv_build"]
build-backend = "uv_build"
[project]
name = "zoo_mcp"
version = "0.21.0"
requires-python = ">=3.11, <3.14"
dependencies = [
"aiofiles<26.0",
"kittycad>=1.4.0,<2.0",
"mcp[cli]>=1.27.1,<2.0",
"pillow<13.0",
"trimesh<6.0",
"truststore<1.0",
"typing-extensions>=4.12",
"zoo-kcl>=0.3.176",
]
authors = [
{ name = "Ryan Barton", email = "ryan@zoo.dev" },
]
maintainers = [
{ name = "Ryan Barton", email = "ryan@zoo.dev" }
]
description = "An MCP server utilizing Zoo's various tools"
readme = "README.md"
license-files = ["LICENSE"]
license = "MIT"
keywords = ["zoo", "mcp", "kittycad", "3d", "modeling", "server"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Repository = "https://github.com/KittyCAD/mcp"
[project.scripts]
zoo-mcp = "zoo_mcp.server:main"
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"live: hits live external services (zoo.dev). Runs by default; deselect locally with `-m 'not live'`.",
]
[tool.ruff.lint]
extend-select = ["F", "I"]
ignore = ["BLE001"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.*"]
[dependency-groups]
dev = [
"pytest-asyncio",
"pytest-httpx",
"pytest-rerunfailures",
"pytest-xdist",
"ruff==0.16.2",
"ty",
"uv-build",
]