-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (27 loc) · 839 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='formatstring',
version='1.1',
packages=find_packages(),
entry_points={
'console_scripts': [
'fmtstr_pattern_create = formatstring.pattern_create:main',
'fmtstr_pattern_offset = formatstring.pattern_offset:main',
]
},
author='Maxime Arthaud',
author_email='[email protected]',
description='Format string exploitation helper',
license='MIT',
keywords='format string security exploit payload vulnerability ctf',
url='https://github.com/arthaud/formatstring',
extras_require={
'elf': 'pyelftools',
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Topic :: Security',
],
)