-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (76 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
88 lines (76 loc) · 2.27 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
86
87
88
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "fxhoudinimcp"
dynamic = ["version"]
description = "Comprehensive MCP server for SideFX Houdini with 131 tools covering SOPs, LOPs/USD, DOPs, PDG/TOPs, COPs, HDAs, animation, rendering, VEX, and more"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
keywords = ["houdini", "mcp", "model-context-protocol", "vfx", "3d", "usd", "procedural", "sidefx"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
]
dependencies = [
"mcp>=1.8.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-cov>=5.0",
"ruff>=0.8.0",
]
mkdocs = [
"mkdocs-material",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
"mkdocs-git-revision-date-localized-plugin",
"mkdocs-git-authors-plugin",
"mkdocs-git-committers-plugin-2",
"mkdocstrings[python]",
"mike",
"black",
]
[project.scripts]
fxhoudinimcp = "fxhoudinimcp.__main__:main"
[project.urls]
Homepage = "https://github.com/healkeiser/fxhoudinimcp"
Documentation = "https://healkeiser.github.io/fxhoudinimcp"
Repository = "https://github.com/healkeiser/fxhoudinimcp"
Issues = "https://github.com/healkeiser/fxhoudinimcp/issues"
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "no-guess-dev"
[tool.hatch.build.hooks.vcs]
version-file = "python/fxhoudinimcp/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["python/fxhoudinimcp"]
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["python"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "C4", "UP", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["fxhoudinimcp"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"integration: requires a live Houdini instance",
]