You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
More packaging crap.
Did I tell you how much I hate python packaging? fragments.py: track recent change in class decorators.
This commit is contained in:
8
setup.py
8
setup.py
@@ -5,10 +5,10 @@
|
||||
from __pkginfo__ import \
|
||||
author, author_email, install_requires, \
|
||||
license, long_description, classifiers, \
|
||||
modname, packages, py_modules, entry_points, \
|
||||
entry_points, modname, py_modules, \
|
||||
short_desc, web, zip_safe
|
||||
|
||||
from setuptools import setup
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
exec(open('uncompyle6/version.py').read())
|
||||
|
||||
@@ -21,9 +21,9 @@ setup(
|
||||
install_requires = install_requires,
|
||||
license = license,
|
||||
long_description = long_description,
|
||||
py_modules = py_modules,
|
||||
name = modname,
|
||||
packages = packages,
|
||||
packages = find_packages(),
|
||||
py_modules = py_modules,
|
||||
test_suite = 'nose.collector',
|
||||
url = web,
|
||||
setup_requires = ['nose>=1.0'],
|
||||
|
Reference in New Issue
Block a user