forked from lundberg/respx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.52 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
#!/usr/bin/env python
from pathlib import Path
from setuptools import setup
exec(Path("respx", "__version__.py").read_text()) # Load __version__ into locals
setup(
name="respx",
version=locals()["__version__"],
license="BSD",
author="Jonas Lundberg",
author_email="[email protected]",
url="https://lundberg.github.io/respx/",
keywords=["httpx", "httpcore", "mock", "responses", "requests", "async", "http"],
description="A utility for mocking out the Python HTTPX and HTTP Core libraries.",
long_description=Path("README.md").read_text("utf-8"),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
project_urls={
"GitHub": "https://github.com/lundberg/respx",
"Changelog": "https://github.com/lundberg/respx/blob/master/CHANGELOG.md",
"Issues": "https://github.com/lundberg/respx/issues",
},
packages=["respx"],
package_data={"respx": ["py.typed"]},
include_package_data=True,
zip_safe=False,
python_requires=">=3.6",
install_requires=["httpx>=0.15"],
)