forked from colour-science/flask-compress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.25 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
36
37
38
39
import setuptools
with open("README.md") as readme_file:
long_description = readme_file.read()
setuptools.setup(
name="quart-compress",
version="0.2.1",
url="https://github.com/AceFire6/quart-compress",
license="MIT",
author="Jethro Muller, William Fagan",
author_email="[email protected], [email protected]",
description="Compress responses in your Quart app with gzip or brotli.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
zip_safe=False,
include_package_data=True,
platforms="any",
setup_requires=["pytest-runner"],
install_requires=["Quart>=0.10.0", "Brotli>=1.0.7"],
tests_require=[
"coveralls>=1.8.2",
"pytest>=5.1.2",
"pytest-asyncio>=0.10.0",
"pytest-cov>=2.7.1",
],
test_suite="tests",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)