-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 814 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
29
30
31
from setuptools import setup
def readme():
with open("readme.md") as f:
return f.read()
setup(
name = "file-unzipper-win",
version = "0.1.0",
description = "File unzipping made easy (for Windows)",
url = "https://github.com/M69k65y/file-unzipper-win",
author = "M69k65y",
license = "MIT",
packages = ["file_unzipper"],
zip_safe = False,
install_requires = [
"pillow",
"python-magic-bin"
],
classifiers = [
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers"
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
],
keywords = "python unzipping unzipper zipfile zip",
long_description = readme(),
long_description_content_type = "text/markdown"
)