mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 01:03:24 +00:00
setup.py: Extract variable tests_require
.. and apply sorting, but nothing more
This commit is contained in:
8
setup.py
8
setup.py
@@ -49,6 +49,12 @@ install_requires = [
|
|||||||
"yarl",
|
"yarl",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
tests_require = [
|
||||||
|
"mock",
|
||||||
|
"pytest",
|
||||||
|
"pytest-httpbin",
|
||||||
|
]
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="vcrpy",
|
name="vcrpy",
|
||||||
version=find_version("vcr", "__init__.py"),
|
version=find_version("vcr", "__init__.py"),
|
||||||
@@ -62,7 +68,7 @@ setup(
|
|||||||
python_requires=">=3.7",
|
python_requires=">=3.7",
|
||||||
install_requires=install_requires,
|
install_requires=install_requires,
|
||||||
license="MIT",
|
license="MIT",
|
||||||
tests_require=["pytest", "mock", "pytest-httpbin"],
|
tests_require=tests_require,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
|
|||||||
Reference in New Issue
Block a user