[project]
name = "manim-mcp"
version = "0.1.0"
description = "MCP server for creating mathematical animations with Manim"
authors = [
{ name = "Manim MCP Contributors" }
]
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["mcp", "manim", "mathematics", "animation", "visualization"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=0.9.0",
"manim>=0.18.0",
]
[project.scripts]
manim-mcp = "manim_mcp.server:main_sync"
[project.urls]
Homepage = "https://github.com/Stelath/manim-mcp"
Repository = "https://github.com/Stelath/manim-mcp"
Issues = "https://github.com/Stelath/manim-mcp/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/manim_mcp"]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
target-version = "py310"