-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
35 lines (29 loc) · 973 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
32
33
34
35
# SPDX-License-Identifier: MIT
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
def requirements():
with open("requirements.txt") as f:
return f.read().split("\n")
setup(
name="unzip-http",
version="0.6",
description="extract files from .zip files over http without downloading entire archive",
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
],
keywords="http zip unzip",
author="Saul Pwanson",
url="https://github.com/saulpw/unzip-http",
python_requires=">=3.8",
py_modules=["unzip_http"],
scripts=["unzip_http.py"],
entry_points={
"console_scripts": ["unzip_http=unzip_http:main"],
},
install_requires=requirements(),
)