diff --git a/PKG-INFO b/PKG-INFO index c5e150b7..f375054d 100755 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,10 +1,10 @@ Metadata-Version: 1.1 -Name: uncompyle +Name: uncompyle2 Version: 1.1 Summary: Python byte-code to source-code converter -Home-page: http://github.com/sysfrog/uncompyle -Author: Hartmut Goebel -Author-email: hartmut@oberon.noris.de +Home-page: http://github.com/Mysterie/uncompyle2 +Author: Mysterie +Author-email: kajusska@gmail.com License: GPLv3 Description: UNKNOWN Platform: UNKNOWN diff --git a/setup.cfg b/setup.cfg index ef17758e..92f2e50b 100755 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [bdist_rpm] release = 1 -packager = Hartmut Goebel +packager = Mysterie doc_files = README # CHANGES.txt # USAGE.txt diff --git a/setup.py b/setup.py index 4f339716..d01d3172 100755 --- a/setup.py +++ b/setup.py @@ -7,9 +7,9 @@ from distutils.core import setup, Extension setup (name = "uncompyle2", version = "1.1", description = "Python byte-code to source-code converter", - author = "Hartmut Goebel", - author_email = "hartmut@oberon.noris.de", - url = "http://github.com/sysfrog/uncompyle", + author = "Mysterie", + author_email = "kajusska@gmail.com", + url = "http://github.com/Mysterie/uncompyle2", packages=['uncompyle2', 'uncompyle2.opcode'], scripts=['scripts/uncompyle2'], )