forked from axt/cfg-explorer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (31 loc) · 1.07 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
from setuptools import setup, find_packages
try:
packages = find_packages()
except ImportError:
import os
packages = [x.strip('./').replace('/','.') for x in os.popen('find -name "__init__.py" | xargs -n1 dirname').read().strip().split('\n')]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='cfg-explorer',
version='0.0.2',
author='Attila Axt',
author_email='[email protected]',
packages=packages,
include_package_data=True,
install_requires=['argparse', 'angr', 'bingraphvis', 'flask'],
entry_points={
'console_scripts': ['cfgexplorer=cfgexplorer.__main__:main'],
},
description='CFG explorer',
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: BSD License"
],
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/axt/cfg-explorer',
)