mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00

pbr automatically uses the version from git tags, and also uses the requirements.txt for dependencies, resulting in less redundancies.
8 lines
104 B
Python
8 lines
104 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
setup_requires=['pbr'],
|
|
pbr=True,
|
|
)
|