-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
45 lines (42 loc) · 1.68 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
#!/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-3-Clause",
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 :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
],
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"]},
entry_points={"pytest11": ["respx = respx.plugin"]},
include_package_data=True,
zip_safe=False,
python_requires=">=3.7",
install_requires=["httpx>=0.21.0"],
)