diff options
author | Lorenz Diener <[email protected]> | 2017-09-05 15:47:34 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2017-09-05 15:47:34 +0200 |
commit | e3a754acf97f3bca30f4547567edb7359bf18323 (patch) | |
tree | 9b31326509f7a262434da24a78696e0e1e92b518 | |
parent | bd6f5f418ebb64f523fd4b6d003e5119e7ada1c7 (diff) | |
parent | e9591099ba7a3e6c1ecb8349014ba98f93198d23 (diff) | |
download | mastodon.py-e3a754acf97f3bca30f4547567edb7359bf18323.tar.gz |
Merge pull request #77 from codl/patch-1
setup.py: fix dateutil name
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]', |