forked from vivisect/vivisect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (56 loc) · 1.71 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import find_packages, setup
from os import path
VERSION = '1.0.5'
dirn = path.abspath(path.dirname(__file__))
with open(path.join(dirn, 'README.md'), 'r') as fd:
desc = fd.read()
setup(
name='vivisect',
author='The Vivisect Peeps',
author_email='',
version=VERSION,
url='https://github.com/vivisect/vivisect',
packages=find_packages(),
zip_safe=False,
description='Pure python disassembler, debugger, emulator, and static analysis framework',
long_description=desc,
long_description_content_type='text/markdown',
include_package_data=True,
package_data={
'': ['*.dll', '*.dylib', '*.lyt', 'Makefile', '*.c', '*.h', '*.yes', '*.sh']
},
entry_points={
'console_scripts': [
'vivbin=vivisect.vivbin:main',
'vdbbin=vdbbin.vdbbin:main',
]
},
install_requires=[
'pyasn1>=0.4.5,<0.5.0',
'pyasn1-modules>=0.2.4,<0.3.0',
'cxxfilt>=0.2.1,<0.3.0',
'msgpack>=1.0.0,<1.1.0',
'pycparser>=2.20',
],
extras_require={
'docs': [
'sphinx>=1.8.2,<2.0.0',
'sphinx-rtd-theme>=0.4.2,<1.0.0',
],
'gui': [
'pyqt5==5.15.1',
'pyqtwebengine==5.15.1',
]
},
classifiers=[
'Topic :: Security',
'Topic :: Software Development :: Disassemblers',
'Topic :: Software Development :: Debuggers',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: Apache Software License',
],
python_requires='>=3.6',
)