-
Notifications
You must be signed in to change notification settings - Fork 112
/
setup.py
24 lines (22 loc) · 828 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
#packages=setuptools.find_packages(),
setuptools.setup(
name="fuze",
packages=['fuze.vminstance','fuze.concolicexecutor','fuze.statebroker',
'fuze.kernelrop'],
version="0.0.1",
author="Wei (ww9210) Wu",
author_email="ww9210@gmail.com",
description="A framework to facilitate linux kernel exploitation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ww9210/Linux_kernel_exploits",
install_requires=['pwntools', 'colorama', 'ROPgadget', 'angr', 'claripy', 'pyvex'],
classifiers=(
"Programming Language :: Python :: 2",
"License :: OSI Approved :: MIT License",
"Operating System :: Ubuntu 16.04",
),
)