Minor script cleanup.

Fix inconsistencies in uncompyle2 script, rename to scripts/uncompyle2 & add to
setup.py (these are all changes from wibiti). Also, change script headers so
they work on Windows too. Remove build folder from repo & add .gitignore so it
doesn't inadvertently get added again.
This commit is contained in:
Ralph Moritz
2013-06-16 23:08:53 +02:00
parent f14ff1b76f
commit a24d1c6c2c
6 changed files with 21 additions and 205 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env python
#! python
"""Setup script for the 'uncompyle' distribution."""
@@ -10,5 +10,6 @@ setup (name = "uncompyle2",
author = "Mysterie",
author_email = "kajusska@gmail.com",
url = "http://github.com/Mysterie/uncompyle2",
packages=['uncompyle2', 'uncompyle2.opcode']
packages=['uncompyle2', 'uncompyle2.opcode'],
scripts=['scripts/uncompyle2']
)