File 0001-Remove-Flask-and-decorator-from-install_requires.patch of Package python-pytest-httpbin
From 55058b289ed1d3f17d907b2a13514d5ac5d3c586 Mon Sep 17 00:00:00 2001
From: Thomas Bechtold <tbechtold@suse.com>
Date: Tue, 8 Aug 2017 21:55:44 +0200
Subject: [PATCH] Remove Flask and decorator from install_requires
Both are not used.
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 11c649c..894b283 100644
--- a/setup.py
+++ b/setup.py
@@ -50,7 +50,7 @@ setup(
keywords='pytest-httpbin testing pytest httpbin',
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
include_package_data = True, # include files listed in MANIFEST.in
- install_requires = ['Flask','decorator','httpbin','six'],
+ install_requires = ['httpbin','six'],
# the following makes a plugin available to pytest
entry_points = {
--
2.13.3