From 5b40a67b3bfc5589917af620655976bc4784452f Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Thu, 25 May 2023 16:32:08 +0200 Subject: [PATCH] setup.py: Extract variable tests_require .. and apply sorting, but nothing more --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b5513a9..9f3b525 100644 --- a/setup.py +++ b/setup.py @@ -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",