We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent facb3c4 commit 9b26ee2Copy full SHA for 9b26ee2
Makefile
@@ -26,7 +26,7 @@ clean:
26
27
# Targets for testing
28
test:
29
- python setup.py test
+ pytest
30
31
# Publish to gh-pages
32
publish:
@@ -48,3 +48,4 @@ install:
48
deploy:
49
python setup.py register
50
twine upload dist/*
51
+
setup.py
@@ -163,9 +163,7 @@ def get_description_type(path=PKG_DESCRIBE):
163
"zip_safe": False,
164
"entry_points": {"console_scripts": []},
165
"install_requires": list(get_requires()),
166
- "python_requires": ">=3.4, <4",
167
- "setup_requires": ["pytest-runner"],
168
- "tests_require": ["pytest"],
+ "python_requires": ">=3.4, <4"
169
}
170
171
0 commit comments