generated from donno2048/nothingness
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
21 lines (21 loc) · 806 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name='zipbomb',
version='1.0.4',
license='MIT',
author='Elisha Hollander',
author_email='[email protected]',
description="Create zipbombs using python",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/donno2048/zipbomb',
project_urls={
'Documentation': 'https://github.com/donno2048/zipbomb#readme',
'Bug Reports': 'https://github.com/donno2048/zipbomb/issues',
'Source Code': 'https://github.com/donno2048/zipbomb',
},
python_requires='>=3.0',
packages=find_packages(),
classifiers=['Programming Language :: Python :: 3'],
entry_points={ 'console_scripts': [ 'zipbomb=zipbomb.__main__:main' ] }
)