From 280c60120beb13d00c807c418c765b93da248b19 Mon Sep 17 00:00:00 2001 From: Will Thompson Date: Mon, 10 Apr 2017 06:48:57 +0100 Subject: Set up pytest --- setup.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index a9e2bfc..59d684b 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,8 @@ setup(name='Mastodon.py', version='1.0.6', description='Python wrapper for the Mastodon API', packages=['mastodon'], + setup_requires=['pytest-runner'], + tests_require=['pytest'], install_requires=['requests', 'dateutils'], url='https://github.com/halcy/Mastodon.py', author='Lorenz Diener', -- cgit v1.2.3 From ab60931620066f6704be3010903f779b3cb9c71a Mon Sep 17 00:00:00 2001 From: Will Thompson Date: Sun, 9 Apr 2017 10:21:56 +0100 Subject: Initial implementation of streaming API This is missing any error handling and rate-limiting around the stream itself, but once the stream is established, the full range of events are supported. Fixes issue #14. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 59d684b..7f1401b 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup(name='Mastodon.py', packages=['mastodon'], setup_requires=['pytest-runner'], tests_require=['pytest'], - install_requires=['requests', 'dateutils'], + install_requires=['requests', 'dateutils', 'six'], url='https://github.com/halcy/Mastodon.py', author='Lorenz Diener', author_email='lorenzd+mastodonpypypi@gmail.com', -- cgit v1.2.3