forked from mandiant/FIDL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 945 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
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='FIDL',
version='1.2',
description='Wrapper for Hex-Rays decompiler API',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Disassemblers',
],
keywords='ida decompiler api vulnerability research reversing malware',
url='https://github.com/fireeye/FIDL',
author='FireEye FLARE Team',
author_email='carlos.garcia@fireeye.com',
license='MIT',
install_requires=[
'networkx',
'six',
],
extras_require={
'dev': [
'pytest',
'pytest-pycodestyle',
'sphinx_rtd_theme',
]
},
packages=['FIDL'],
include_package_data=True,
zip_safe=False)