1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

setup.py: Extract variable tests_require

.. and apply sorting, but nothing more
This commit is contained in:
Sebastian Pipping
2023-05-25 16:32:08 +02:00
parent c41bd2bb40
commit 5b40a67b3b

View File

@@ -49,6 +49,12 @@ install_requires = [
"yarl",
]
tests_require = [
"mock",
"pytest",
"pytest-httpbin",
]
setup(
name="vcrpy",
version=find_version("vcr", "__init__.py"),
@@ -62,7 +68,7 @@ setup(
python_requires=">=3.7",
install_requires=install_requires,
license="MIT",
tests_require=["pytest", "mock", "pytest-httpbin"],
tests_require=tests_require,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",