You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
License is MIT
marsh.py: remove unused import
This commit is contained in:
@@ -34,7 +34,7 @@ ftp_url = None
|
|||||||
install_requires = ['python-spark >= 1.1.0']
|
install_requires = ['python-spark >= 1.1.0']
|
||||||
license = 'GPL'
|
license = 'GPL'
|
||||||
|
|
||||||
# license = 'BSDish'
|
license = 'MIT'
|
||||||
mailing_list = 'python-debugger@googlegroups.com'
|
mailing_list = 'python-debugger@googlegroups.com'
|
||||||
modname = 'uncompyle6'
|
modname = 'uncompyle6'
|
||||||
packages = ['uncompyle6', 'uncompyle6.opcodes', 'uncompyle6.semantics', 'uncompyle6.scanners', 'uncompyle6.parsers']
|
packages = ['uncompyle6', 'uncompyle6.opcodes', 'uncompyle6.semantics', 'uncompyle6.scanners', 'uncompyle6.parsers']
|
||||||
|
11
setup.py
11
setup.py
@@ -2,16 +2,9 @@
|
|||||||
|
|
||||||
"""Setup script for the 'uncompyle6' distribution."""
|
"""Setup script for the 'uncompyle6' distribution."""
|
||||||
|
|
||||||
# Get the package information used in setup().
|
|
||||||
# from __pkginfo__ import \
|
|
||||||
# author, author_email, classifiers, \
|
|
||||||
# install_requires, license, long_description, \
|
|
||||||
# modname, packages, py_modules, \
|
|
||||||
# short_desc, version, web, zip_safe
|
|
||||||
|
|
||||||
from __pkginfo__ import \
|
from __pkginfo__ import \
|
||||||
author, author_email, \
|
author, author_email, \
|
||||||
long_description, \
|
license, long_description, \
|
||||||
modname, packages, py_modules, scripts, \
|
modname, packages, py_modules, scripts, \
|
||||||
short_desc, version, web, zip_safe
|
short_desc, version, web, zip_safe
|
||||||
|
|
||||||
@@ -24,7 +17,7 @@ setup(
|
|||||||
# 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,
|
||||||
name = modname,
|
name = modname,
|
||||||
|
@@ -18,7 +18,6 @@ from __future__ import print_function
|
|||||||
import sys, types
|
import sys, types
|
||||||
from struct import unpack
|
from struct import unpack
|
||||||
|
|
||||||
import uncompyle6.scanners.scanner3 as scan3
|
|
||||||
from uncompyle6.magics import PYTHON_MAGIC_INT
|
from uncompyle6.magics import PYTHON_MAGIC_INT
|
||||||
from uncompyle6.code import Code3
|
from uncompyle6.code import Code3
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user