mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-27 07:00:42 +00:00
e0eba6998f
Did I ever mention how much Python sucks at packaging?
32 lines
1.1 KiB
Python
Executable File
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)
|