Disable installing pydisassemble for now pending understanding what's up with CI

This commit is contained in:
rocky
2015-12-14 22:30:10 -05:00
parent 77b7286f34
commit 5e5da104c5

View File

@@ -12,27 +12,26 @@ copyright = """
Copyright (C) 2015 Rocky Bernstein <rocky@gnu.org>. Copyright (C) 2015 Rocky Bernstein <rocky@gnu.org>.
""" """
# classifiers = ['Development Status :: 5 - Production/Stable', classifiers = ['Development Status :: 3 - Alpha',
# 'Environment :: Console', 'Intended Audience :: Developers',
# 'Intended Audience :: Developers', 'Operating System :: OS Independent',
# 'License :: OSI Approved :: GNU General Public License (GPL)', 'Programming Language :: Python',
# 'Operating System :: OS Independent', 'Topic :: Software Development :: Debuggers',
# 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules',
# 'Topic :: Software Development :: Debuggers', ]
# 'Topic :: Software Development :: Libraries :: Python Modules',
# ]
# The rest in alphabetic order # The rest in alphabetic order
author = "Rocky Bernstein" author = "Rocky Bernstein"
author_email = "rocky@gnu.org" author_email = "rb@dustyfeet.com"
ftp_url = None ftp_url = None
# license = 'GPL' # license = 'GPL'
mailing_list = 'python-debugger@googlegroups.com' mailing_list = 'python-debugger@googlegroups.com'
modname = 'uncompyle6' modname = 'uncompyle6'
packages = ['uncompyle6', 'uncompyle6.opcodes'] packages = ['uncompyle6', 'uncompyle6.opcodes']
py_modules = None py_modules = None
short_desc = 'Python byte-code to source-code converter' short_desc = 'Python byte-code disassembler and source-code converter'
scripts = ['bin/uncompyle6', 'bin/pydisassemble'] # scripts = ['bin/uncompyle6', 'bin/pydissassemble']
scripts = ['bin/uncompyle6']
import os import os
import os.path, sys import os.path, sys
@@ -45,7 +44,7 @@ def get_srcdir():
# VERSION.py sets variable VERSION. # VERSION.py sets variable VERSION.
ns = {} ns = {}
version = '2.0' version = '2.0'
web = 'https://github.com/rocky/uncompyle6/' web = 'https://github.com/rocky/python-uncompyle6/'
# tracebacks in zip files are funky and not debuggable # tracebacks in zip files are funky and not debuggable
zip_safe = True zip_safe = True