-
Notifications
You must be signed in to change notification settings - Fork 270
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 1.24 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "math-to-manim"
version = "1.1.0"
description = "Ask a question -> get a freakin' movie. The Mythos 6-agent chain turns one sentence into a cinematic Manim film, with a REST API and MCP server."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Christian H. Cooper" }]
keywords = ["manim", "animation", "mathematics", "claude", "mcp", "agents"]
dependencies = [
"pydantic>=2,<3",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"numpy>=1.26",
"httpx>=0.27",
"fastapi>=0.110",
"uvicorn>=0.29",
"mcp>=2.0,<3",
]
api = [
"fastapi>=0.110",
"uvicorn>=0.29",
]
mcp = [
"mcp>=2.0,<3",
]
render = [
"manim>=0.19",
]
[project.scripts]
math-to-manim = "mythos.cli:main"
m2m = "mythos.cli:main"
math-to-manim-sol = "sol.cli:main"
m2m-sol = "sol.cli:main"
[project.urls]
Homepage = "https://github.com/HarleyCoops/Math-To-Manim"
Repository = "https://github.com/HarleyCoops/Math-To-Manim"
[tool.setuptools.packages.find]
include = ["mythos*", "sol*"]
[tool.setuptools.package-data]
mythos = ["agents/*.md"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-q"