aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2017-04-10 10:33:39 +0200
committerGitHub <[email protected]>2017-04-10 10:33:39 +0200
commit54541f81de65850a97d5aff407deb5297c6ca2a0 (patch)
tree7253601511916213477d8f52012a782370a5fce2 /setup.py
parent7db6b4c02ee361d1e54b5c69d747918b1c193e42 (diff)
parent965d514de1c15a5a5572569c9a349bb304045006 (diff)
downloadmastodon.py-54541f81de65850a97d5aff407deb5297c6ca2a0.tar.gz
Merge pull request #30 from wjt/streaming
Support streaming API
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index a9e2bfc..7f1401b 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,9 @@ setup(name='Mastodon.py',
4 version='1.0.6', 4 version='1.0.6',
5 description='Python wrapper for the Mastodon API', 5 description='Python wrapper for the Mastodon API',
6 packages=['mastodon'], 6 packages=['mastodon'],
7 install_requires=['requests', 'dateutils'], 7 setup_requires=['pytest-runner'],
8 tests_require=['pytest'],
9 install_requires=['requests', 'dateutils', 'six'],
8 url='https://github.com/halcy/Mastodon.py', 10 url='https://github.com/halcy/Mastodon.py',
9 author='Lorenz Diener', 11 author='Lorenz Diener',
10 author_email='[email protected]', 12 author_email='[email protected]',
Powered by cgit v1.2.3 (git 2.41.0)