-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (53 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (53 loc) · 1.85 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "motionmcp-kimodo"
version = "0.1.0"
description = "MMCP backbone for the Kimodo motion model. A drop-in motionmcp.Backbone that runs a Kimodo SOMA model under the protocol."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [{ name = "MMCP contributors" }]
keywords = ["mmcp", "motionmcp", "kimodo", "motion", "animation", "backbone"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
]
dependencies = [
"motionmcp-sdk >= 0.1",
# Kimodo isn't published to PyPI, so we pin a git source.
# ``animatica-ai/kimodo`` is a fork of upstream ``nv-tlabs/kimodo``
# with fixes for common install / runtime issues; pin tags or commits
# with ``@ref`` if version stability becomes important.
"kimodo @ git+https://github.com/animatica-ai/kimodo.git",
"numpy >= 1.24",
"torch >= 2.0",
]
[project.optional-dependencies]
dev = [
"pytest >= 8.0",
"ruff >= 0.4",
]
[project.scripts]
# `motionmcp-kimodo --port 8080 --model soma30` runs a server.
motionmcp-kimodo = "motionmcp_kimodo.cli:main"
[project.urls]
Homepage = "https://animatica.ai/mmcp"
Source = "https://github.com/animatica-ai/motionmcp-kimodo"
Issues = "https://github.com/animatica-ai/motionmcp-kimodo/issues"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/motionmcp_kimodo"]
[tool.hatch.build.targets.sdist]
include = ["src/motionmcp_kimodo", "tests", "docs", "README.md", "LICENSE"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
line-length = 100
target-version = "py310"