-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (61 loc) · 1.81 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "3brown1blue"
version = "0.3.1"
description = "Generate 3Blue1Brown-style Manim explainer videos from topics or slide decks"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Amit T Subhash", email = "atsubhas@iu.edu" },
]
keywords = ["manim", "animation", "explainer", "3blue1brown", "claude", "cursor", "windsurf", "copilot", "math", "visualization"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"click>=8.0",
]
[project.urls]
Homepage = "https://github.com/AmitSubhash/3brown1blue"
Repository = "https://github.com/AmitSubhash/3brown1blue"
Issues = "https://github.com/AmitSubhash/3brown1blue/issues"
[project.optional-dependencies]
anthropic = ["anthropic>=0.40"]
openai = ["openai>=1.0"]
google = ["openai>=1.0"]
groq = ["openai>=1.0"]
mistral = ["openai>=1.0"]
slides = ["python-pptx>=0.6"]
all = ["anthropic>=0.40", "openai>=1.0", "python-pptx>=0.6"]
[project.scripts]
3brown1blue = "three_b1b.cli:main"
[tool.hatch.build]
exclude = [
".tts311/",
".venv/",
"videos/",
"media/",
"dist/",
"voiceover_audio/",
"assets/",
"*.mp4",
"*.wav",
".ruff_cache/",
"__pycache__/",
]
[tool.hatch.build.targets.wheel]
packages = ["src/three_b1b"]