-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
13 lines (13 loc) · 700 Bytes
/
Copy pathsetup.py
File metadata and controls
13 lines (13 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
from distutils.core import setup
setup(
name = 'unzipbomb',
packages = ['unzipbomb'],
version = '1.1',
description = 'A python module which defuses the zipbomb also can extract all the zip files that are contained in a specific root folder, please read usage.pdf from github repo',
author = 'Ankitesh Gupta, Saif Vazir',
author_email = 'ankiteshguptas@gmail.com,ssv.saif@gmail.com',
url = 'https://github.com/ankitesh97/unzipbomb',
download_url = 'https://github.com/ankitesh97/unzipbomb/tarball/v1.1',
keywords = ['unzipbomb', 'zipbomb', 'extract', 'multiple zip files', 'zip bomb','unzip','unzip','zip','compress','decompress','extract multiple zip files'],
classifiers = [],
)