diff options
author | Lorenz Diener <[email protected]> | 2018-08-02 15:55:02 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-08-02 15:55:02 +0200 |
commit | 191ad84cef0b37e8d8a708812336858d447304c5 (patch) | |
tree | 38d81b65f8e73fd6b6cbf4e8e9d2c94d8854e834 | |
parent | ef1bb2e4b08b2d9b4d09649b6c32bf5f15df2f47 (diff) | |
download | mastodon.py-191ad84cef0b37e8d8a708812336858d447304c5.tar.gz |
Move pytest-runner to test_deps
-rw-r--r-- | setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,6 +1,6 @@ | |||
1 | from setuptools import setup | 1 | from setuptools import setup |
2 | 2 | ||
3 | test_deps = ['pytest', 'pytest-cov', 'vcrpy', 'pytest-vcr', 'pytest-mock'] | 3 | test_deps = ['pytest', 'pytest-runner', 'pytest-cov', 'vcrpy', 'pytest-vcr', 'pytest-mock'] |
4 | extras = { | 4 | extras = { |
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', |