mirror of
https://github.com/3b1b/manim.git
synced 2026-04-26 03:00:23 -04: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,
|
|
)
|