##// END OF EJS Templates
Backport PR #9925: Only make .tar.gz sdists when releasing...
Backport PR #9925: Only make .tar.gz sdists when releasing PEP 527, which was just accepted, says that there can only be one sdist per release. Tarballs are already the more common sdist format on PyPI, so let's go with that. Signed-off-by: Thomas Kluyver <thomas@kluyver.me.uk>

File last commit:

r13387:3b4dba0a
r23133:95281330
Show More
setupegg.py
7 lines | 217 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))