You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
setup.py: don't need to import pkg_resources pydisassemble: give an error is no file or directory is given usage should go to stderr, not stdout
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, scripts, \
|
|
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,
|
|
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'],
|
|
scripts = scripts,
|
|
version = VERSION,
|
|
zip_safe = zip_safe)
|