mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-27 07:00:42 +00:00
30 lines
1.1 KiB
Python
Executable File
30 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, \
|
|
entry_points, modname, py_modules, \
|
|
short_desc, VERSION, web, \
|
|
zip_safe
|
|
|
|
from setuptools import setup, find_packages
|
|
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,
|
|
name = modname,
|
|
packages = find_packages(),
|
|
py_modules = py_modules,
|
|
test_suite = 'nose.collector',
|
|
url = web,
|
|
tests_require = ['nose>=1.0'],
|
|
version = VERSION,
|
|
zip_safe = zip_safe)
|