-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9370c4b
commit ae81470
Showing
5 changed files
with
20 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,3 +70,6 @@ docs/_build/ | |
|
||
# Pyenv | ||
.python-version | ||
|
||
# Manim | ||
media/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Manim-Forge | ||
Some parts of the python library [Manim](https://www.manim.community) need | ||
to be executed fast. This library contains code | ||
for these computations, but written in Rust | ||
to improve speed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,24 +4,23 @@ build-backend = "maturin" | |
|
||
[project] | ||
name = "manimforge" | ||
description = "Rust parts of the Animation Library Manim" | ||
version = "0.1.1" | ||
readme = "README.md" | ||
license = "MIT" | ||
requires-python = ">=3.9,<3.13" | ||
classifiers = [ | ||
"Programming Language :: Rust", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
] | ||
dynamic = ["version"] | ||
dependencies = [] | ||
|
||
[project.urls] | ||
documentation="https://docs.manim.community/" | ||
homepage="https://www.manim.community/" | ||
repository = "https://github.com/ManimCommunity/manim-forge" | ||
|
||
[tool.maturin] | ||
features = ["pyo3/extension-module"] | ||
|
||
[tool.poetry] | ||
name = "manimforge" | ||
version = "0.0.1" | ||
description = "Animation engine for explanatory math videos." | ||
authors = ["The Manim Community Developers <[email protected]>"] | ||
package-mode = false | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9,<3.13" | ||
maturin = ">=1.6,<2.0" |