You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
More package administrivia
This commit is contained in:
@@ -12,7 +12,7 @@ copyright = """
|
|||||||
Copyright (C) 2015, 2016 Rocky Bernstein <rb@dustyfeet.com>.
|
Copyright (C) 2015, 2016 Rocky Bernstein <rb@dustyfeet.com>.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
classifiers = ['Development Status :: 3 - Alpha',
|
classifiers = ['Development Status :: 4 - Beta',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
@@ -31,7 +31,7 @@ classifiers = ['Development Status :: 3 - Alpha',
|
|||||||
author = "Rocky Bernstein, Hartmut Goebel, John Aycock, and others"
|
author = "Rocky Bernstein, Hartmut Goebel, John Aycock, and others"
|
||||||
author_email = "rb@dustyfeet.com"
|
author_email = "rb@dustyfeet.com"
|
||||||
ftp_url = None
|
ftp_url = None
|
||||||
install_requires = ['python-spark >= 1.1.0']
|
install_requires = ['python-spark >= 1.1.1']
|
||||||
license = 'GPL'
|
license = 'GPL'
|
||||||
|
|
||||||
license = 'MIT'
|
license = 'MIT'
|
||||||
|
@@ -1 +1 @@
|
|||||||
spark_parser >= 1.1.0
|
spark_parser >= 1.1.1
|
||||||
|
8
setup.py
8
setup.py
@@ -3,8 +3,8 @@
|
|||||||
"""Setup script for the 'uncompyle6' distribution."""
|
"""Setup script for the 'uncompyle6' distribution."""
|
||||||
|
|
||||||
from __pkginfo__ import \
|
from __pkginfo__ import \
|
||||||
author, author_email, \
|
author, author_email, install_requires, \
|
||||||
license, long_description, \
|
license, long_description, classifiers, \
|
||||||
modname, packages, py_modules, scripts, \
|
modname, packages, py_modules, scripts, \
|
||||||
short_desc, web, zip_safe
|
short_desc, web, zip_safe
|
||||||
|
|
||||||
@@ -16,9 +16,9 @@ exec(open('uncompyle6/version.py').read())
|
|||||||
setup(
|
setup(
|
||||||
author = author,
|
author = author,
|
||||||
author_email = author_email,
|
author_email = author_email,
|
||||||
# classifiers = classifiers,
|
classifiers = classifiers,
|
||||||
description = short_desc,
|
description = short_desc,
|
||||||
# install_requires = install_requires,
|
install_requires = install_requires,
|
||||||
license = license,
|
license = license,
|
||||||
long_description = long_description,
|
long_description = long_description,
|
||||||
py_modules = py_modules,
|
py_modules = py_modules,
|
||||||
|
Reference in New Issue
Block a user