-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (31 loc) · 1.05 KB
/
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
"""A compression ASGI middleware using zstd.
Built using starlette under the hood, it can be used as a drop in replacement
to GZipMiddleware for Starlette or FastAPI, if you have a client that supports
it.
"""
from setuptools import setup # type: ignore
setup(
name="zstd-asgi",
version="0.2",
url="https://github.com/tuffnatty/zstd-asgi",
license="MIT",
author="Phil Krylov",
author_email="[email protected]",
description="Zstd compression ASGI middleware",
long_description=__doc__,
packages=["zstd_asgi"],
python_requires=">=3.8",
include_package_data=True,
install_requires=["starlette>=0.13.4", "zstandard>=0.22.0"],
platforms="any",
zip_safe=False,
classifiers=[
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)