Skip to content

Commit

Permalink
Properly fix #121
Browse files Browse the repository at this point in the history
Turns out that wasn't the place to put it, as it'd put `deobfuscate.py` into `/usr/bin/`.
  • Loading branch information
einstein95 authored Mar 29, 2022
1 parent 0bae53a commit a93a253
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ def readme():
description='Tool to decompile Ren\'Py compiled .rpyc script files.',
long_description=readme(),
url='https://github.com/CensoredUsername/unrpyc',
py_modules=['unrpyc'],
py_modules=['unrpyc', '.deobfuscate'],
packages=['decompiler'],
scripts=['unrpyc.py', 'deobfuscate.py'],
scripts=['unrpyc.py'],
zip_safe=False,
)

0 comments on commit a93a253

Please sign in to comment.