You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
See if travis will take spark 1.2.1
This commit is contained in:
@@ -36,7 +36,7 @@ entry_points={
|
|||||||
'pydisassemble=uncompyle6.bin.pydisassemble:main',
|
'pydisassemble=uncompyle6.bin.pydisassemble:main',
|
||||||
]}
|
]}
|
||||||
ftp_url = None
|
ftp_url = None
|
||||||
install_requires = ['spark-parser >= 1.1.1']
|
install_requires = ['spark-parser >= 1.2.1']
|
||||||
license = 'MIT'
|
license = 'MIT'
|
||||||
mailing_list = 'python-debugger@googlegroups.com'
|
mailing_list = 'python-debugger@googlegroups.com'
|
||||||
modname = 'uncompyle6'
|
modname = 'uncompyle6'
|
||||||
@@ -49,7 +49,15 @@ zip_safe = True
|
|||||||
|
|
||||||
|
|
||||||
import os.path
|
import os.path
|
||||||
def read(*rnames):
|
def get_srcdir():
|
||||||
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
|
filename = os.path.normcase(os.path.dirname(os.path.abspath(__file__)))
|
||||||
|
return os.path.realpath(filename)
|
||||||
|
|
||||||
|
srcdir = get_srcdir()
|
||||||
|
|
||||||
|
def read(*rnames):
|
||||||
|
return open(os.path.join(srcdir, *rnames)).read()
|
||||||
|
|
||||||
|
# Get info from files; set: long_description and VERSION
|
||||||
long_description = ( read("README.rst") + '\n' )
|
long_description = ( read("README.rst") + '\n' )
|
||||||
|
exec(read('uncompyle6/version.py'))
|
||||||
|
@@ -1 +1 @@
|
|||||||
spark-parser >= 1.1.1
|
spark-parser >= 1.2.1
|
||||||
|
6
setup.py
6
setup.py
@@ -6,12 +6,10 @@ from __pkginfo__ import \
|
|||||||
author, author_email, install_requires, \
|
author, author_email, install_requires, \
|
||||||
license, long_description, classifiers, \
|
license, long_description, classifiers, \
|
||||||
entry_points, modname, py_modules, \
|
entry_points, modname, py_modules, \
|
||||||
short_desc, web, zip_safe
|
short_desc, VERSION, web, \
|
||||||
|
zip_safe
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
exec(open('uncompyle6/version.py').read())
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
author = author,
|
author = author,
|
||||||
author_email = author_email,
|
author_email = author_email,
|
||||||
|
Reference in New Issue
Block a user