-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
25 lines (24 loc) · 935 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
from distutils.core import setup
setup(
name = 'ropgen',
packages = ['ropgen'],
version = '1.0',
license='MIT',
description = 'A python module to facilitate in the generation of ROP chain exploit strings.',
author = '0xec',
author_email = '[email protected]',
url = 'https://github.com/extremecoders-re/ropgen',
download_url = 'https://github.com/extremecoders-re/ropgen/tarball/1.0',
keywords = ['rop', 'rop-gadgets', 'rop-exploitation'],
install_requires = ['texttable'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Security',
],
)