mirror of
https://github.com/3b1b/manim.git
synced 2025-07-28 04:23:16 +08:00

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