aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)