-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
42 lines (39 loc) · 1.53 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
35
36
37
38
39
40
41
42
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name='zip-shotgun',
version='1.0.2',
packages=find_packages(),
description='Utility script to test zip file upload functionality (and possible extraction of zip files) for vulnerabilities',
long_description=readme,
long_description_content_type='text/markdown',
author='Janusz Piechówka (https://github.com/jpiechowka)',
url='https://github.com/jpiechowka/zip-shotgun',
install_requires=['click~=7.0', 'typeguard~=2.2'],
python_requires='>=3.6',
license='GNU General Public License v3.0',
keywords='security pentest hacking zip',
entry_points={
'console_scripts': [
'zip-shotgun = zip_shotgun.zip_shotgun_main:zip_shotgun_cli',
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Security',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
zip_safe=False
)