From 67583fb3f511402c73c21862459d3ecfafe1c492 Mon Sep 17 00:00:00 2001 From: Phil Underwood Date: Sun, 25 Dec 2016 22:35:33 +0000 Subject: [PATCH] Make ready for PyPI --- setup.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b9bde1c..c13cfb0 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from distutils.core import setup setup(name='tingbot-gui', - version='0.1', + version='0.9', description='Graphical User Interface for tingbot', url='http://github.com/furbrain/tingbot-gui', author='Phil Underwood', @@ -19,4 +19,14 @@ install_requires=['tingbot-python'], dependency_links=['https://github.com/tingbot/tingbot-python/tarball/master'], zip_safe=False, - keywords='tingbot',) + keywords='tingbot', + classifiers=[ + "Development Status :: 4 - Beta", + "Environment :: Other Environment", + "Intended Audience :: Developers", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 2.7", + "Topic :: Software Development :: User Interfaces" + ])