-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (23 loc) · 829 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(
name='repyexe',
version="0.1.2",
description='Reverse engineer Windows executable file compiled using Python',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Boxuan Tang',
author_email='[email protected]',
url='https://github.com/tangboxuan/reverse-python-exe',
packages=['repyexe'],
install_requires=['pefile', 'uncompyle6'],
entry_points={
'console_scripts': [ 'repyexe = repyexe.__main__:main' ]
},
keywords='reverse engineer windows executable python malware analysis',
classifiers=[
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
],
)