-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
executable file
·46 lines (40 loc) · 1.39 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
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import find_packages
from setuptools import setup
with open("README.md", "r") as f:
readme = f.read()
with open("requirements.txt", "r") as f:
requirements = f.readlines()
with open("test-requirements.txt", "r") as f:
test_requirements = f.readlines()
setup(
author="Jordi Masip",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
description="Async client for testing ASGI web applications",
install_requires=requirements,
license="MIT license",
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
name="async-asgi-testclient",
keywords="async asgi testclient",
packages=find_packages(include=["async_asgi_testclient"]),
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/vinissimus/async-asgi-testclient",
version="1.4.11",
zip_safe=False,
)