python-uncompyle6/setup.py
rocky e0eba6998f Python packaging - yet again.
Did I ever mention how much Python sucks at packaging?
2016-05-13 22:59:15 -04:00

32 lines
1.1 KiB
Python
Executable File

#!/usr/bin/env python
"""Setup script for the 'uncompyle6' distribution."""
from __pkginfo__ import \
author, author_email, install_requires, \
license, long_description, classifiers, \
modname, packages, py_modules, entry_points, \
short_desc, web, zip_safe
from setuptools import setup
exec(open('uncompyle6/version.py').read())
setup(
author = author,
author_email = author_email,
classifiers = classifiers,
description = short_desc,
entry_points = entry_points,
install_requires = install_requires,
license = license,
long_description = long_description,
py_modules = py_modules,
name = modname,
packages = packages,
test_suite = 'nose.collector',
url = web,
setup_requires = ['nose>=1.0'],
version = VERSION,
zip_safe = zip_safe)