mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-27 07:00:42 +00:00
58 lines
2.0 KiB
Python
58 lines
2.0 KiB
Python
"""uncompyle6 packaging information"""
|
|
|
|
# To the extent possible we make this file look more like a
|
|
# configuration file rather than code like setup.py. I find putting
|
|
# configuration stuff in the middle of a function call in setup.py,
|
|
# which for example requires commas in between parameters, is a little
|
|
# less elegant than having it here with reduced code, albeit there
|
|
# still is some room for improvement.
|
|
|
|
# Things that change more often go here.
|
|
copyright = """
|
|
Copyright (C) 2015 Rocky Bernstein <rocky@gnu.org>.
|
|
"""
|
|
|
|
# classifiers = ['Development Status :: 5 - Production/Stable',
|
|
# 'Environment :: Console',
|
|
# 'Intended Audience :: Developers',
|
|
# 'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
# 'Operating System :: OS Independent',
|
|
# 'Programming Language :: Python',
|
|
# 'Topic :: Software Development :: Debuggers',
|
|
# 'Topic :: Software Development :: Libraries :: Python Modules',
|
|
# ]
|
|
|
|
# The rest in alphabetic order
|
|
author = "Rocky Bernstein"
|
|
author_email = "rocky@gnu.org"
|
|
ftp_url = None
|
|
# license = 'GPL'
|
|
mailing_list = 'python-debugger@googlegroups.com'
|
|
modname = 'uncompyle6'
|
|
packages = ['uncompyle6', 'uncompyle6.opcodes']
|
|
py_modules = None
|
|
short_desc = 'Python byte-code to source-code converter'
|
|
scripts = ['uncompyle6', 'pydisassemble']
|
|
|
|
import os
|
|
import os.path, sys
|
|
|
|
|
|
def get_srcdir():
|
|
filename = os.path.normcase(os.path.dirname(os.path.abspath(__file__)))
|
|
return os.path.realpath(filename)
|
|
|
|
# VERSION.py sets variable VERSION.
|
|
ns = {}
|
|
version = '2.0'
|
|
web = 'https://github.com/rocky/uncompyle6/'
|
|
|
|
# tracebacks in zip files are funky and not debuggable
|
|
zip_safe = True
|
|
|
|
|
|
def read(*rnames):
|
|
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
|
|
|
|
long_description = ( read("README.rst") + '\n' )
|