From 0f9489c94e8ec4d3effab4314497428872a80ad1 Mon Sep 17 00:00:00 2001 From: Ollie Terrance Date: Wed, 11 Jul 2018 20:36:08 +0100 Subject: [PATCH] Promote to beta, add test requirements --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ff64838..8c3f066 100644 --- a/setup.py +++ b/setup.py @@ -4,10 +4,10 @@ setup(name="SkPy", description="An unofficial Python library for interacting with the Skype HTTP API.", long_description=open(path.join(path.abspath(path.dirname(__file__)), "README.rst"), "r").read(), - author="Ollie Terrance", packages=["skpy"], install_requires=["beautifulsoup4", "requests"], - classifiers=["Development Status :: 3 - Alpha", + tests_require=["beautifulsoup4", "requests", "responses"], + classifiers=["Development Status :: 4 - Beta", "Intended Audience :: Developers", "Topic :: Communications :: Chat", "Topic :: Software Development :: Libraries"])