[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "mcp-manim-slides" version = "0.1.0" description = "Model Context Protocol (MCP) server for Manim-Slides presentations" readme = "README.md" requires-python = ">=3.10" license = { text = "MIT" } authors = [ { name = "Antonio Machuca" } ] dependencies = [ "mcp[cli]>=2.0.0", "manim>=0.18.1", "manim-slides>=5.2.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0.0", "ruff>=0.5.0", ] [project.scripts] mcp-manim-slides = "mcp_manim_slides.server:main" [tool.hatch.build.targets.wheel] packages = ["mcp_manim_slides"] [tool.ruff] line-length = 88 target-version = "py310" [tool.ruff.lint] select = [ "E", # pycodestyle errors "W", # pycodestyle warnings "F", # pyflakes "I", # isort "UP", # pyupgrade "B", # flake8-bugbear "C4", # flake8-comprehensions ] ignore = [] [tool.pytest.ini_options] testpaths = ["tests"] pythonpath = ["."] addopts = "-v"