We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13dae7b commit bdad693Copy full SHA for bdad693
requirements/main.txt
@@ -1,3 +1,2 @@
1
Flask
2
-Werkzeug>=0.7
3
-pytest>=2.4
+Werkzeug>=0.7
setup.py
@@ -127,7 +127,7 @@ def get_version():
127
128
129
version = get_version()
130
-requirements = read('requirements', 'main.txt').splitlines()
+requirements = read('requirements', 'main.txt').splitlines() + ['pytest']
131
tests_require = []
132
133
extras_require = {
@@ -179,7 +179,7 @@ def get_version():
179
],
180
181
# The following makes a plugin available to pytest
182
- entry_points = {
+ entry_points={
183
'pytest11': [
184
'flask = pytest_flask.plugin',
185
]
0 commit comments