aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2017-09-05 15:47:34 +0200
committerGitHub <[email protected]>2017-09-05 15:47:34 +0200
commite3a754acf97f3bca30f4547567edb7359bf18323 (patch)
tree9b31326509f7a262434da24a78696e0e1e92b518
parentbd6f5f418ebb64f523fd4b6d003e5119e7ada1c7 (diff)
parente9591099ba7a3e6c1ecb8349014ba98f93198d23 (diff)
downloadmastodon.py-e3a754acf97f3bca30f4547567edb7359bf18323.tar.gz
Merge pull request #77 from codl/patch-1
setup.py: fix dateutil name
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 81dafe6..20c1bf1 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ setup(name='Mastodon.py',
6 packages=['mastodon'], 6 packages=['mastodon'],
7 setup_requires=['pytest-runner'], 7 setup_requires=['pytest-runner'],
8 tests_require=['pytest'], 8 tests_require=['pytest'],
9 install_requires=['requests', 'dateutil', 'six'], 9 install_requires=['requests', 'python-dateutil', 'six'],
10 url='https://github.com/halcy/Mastodon.py', 10 url='https://github.com/halcy/Mastodon.py',
11 author='Lorenz Diener', 11 author='Lorenz Diener',
12 author_email='[email protected]', 12 author_email='[email protected]',
Powered by cgit v1.2.3 (git 2.41.0)