-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 795 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 795 Bytes
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("README.md") as fh:
long_description = fh.read()
setup(
name="sunzip",
version="0.0.5",
keywords=("secure unzip", "zipbomb"),
description="Provide secure unzip against zip bomb.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/twbgc/sunzip",
author="JunWeiSong,KunYuChen",
author_email="sungboss2004@gmail.com",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["sunzip-cli=sunzip.cli:main"]},
)