aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2018-08-02 15:55:02 +0200
committerGitHub <[email protected]>2018-08-02 15:55:02 +0200
commit191ad84cef0b37e8d8a708812336858d447304c5 (patch)
tree38d81b65f8e73fd6b6cbf4e8e9d2c94d8854e834
parentef1bb2e4b08b2d9b4d09649b6c32bf5f15df2f47 (diff)
downloadmastodon.py-191ad84cef0b37e8d8a708812336858d447304c5.tar.gz
Move pytest-runner to test_deps
-rw-r--r--setup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 1969a90..e49c26c 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
1from setuptools import setup 1from setuptools import setup
2 2
3test_deps = ['pytest', 'pytest-cov', 'vcrpy', 'pytest-vcr', 'pytest-mock'] 3test_deps = ['pytest', 'pytest-runner', 'pytest-cov', 'vcrpy', 'pytest-vcr', 'pytest-mock']
4extras = { 4extras = {
5 "test": test_deps 5 "test": test_deps
6} 6}
@@ -9,7 +9,6 @@ setup(name='Mastodon.py',
9 version='1.3.1', 9 version='1.3.1',
10 description='Python wrapper for the Mastodon API', 10 description='Python wrapper for the Mastodon API',
11 packages=['mastodon'], 11 packages=['mastodon'],
12 setup_requires=['pytest-runner'],
13 install_requires=[ 12 install_requires=[
14 'requests', 13 'requests',
15 'python-dateutil', 14 'python-dateutil',
Powered by cgit v1.2.3 (git 2.41.0)