From 92203c7de2c6c0c19bf0019fdb15d2ebe44b735e Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Mon, 6 Jun 2011 09:25:42 +0100 Subject: [PATCH] Added classifiers for pypi --- setup.py | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 92db664..30a800f 100755 --- a/setup.py +++ b/setup.py @@ -4,10 +4,18 @@ from distutils.core import setup from ts3 import __version__ setup(name = "python-ts3", - version = __version__, - description = "TS3 ServerQuery library for Python", - author = "Andrew Willaims", - author_email = "andy@tensixtyone.com", - url = "https://github.com/nikdoof/python-ts3/", - packages = ['ts3',], + version = __version__, + description = "TS3 ServerQuery library for Python", + author = "Andrew Willaims", + author_email = "andy@tensixtyone.com", + url = "https://github.com/nikdoof/python-ts3/", + packages = ['ts3',], + + classifiers = [ + 'License :: OSI Approved :: BSD License', + 'Topic :: Internet', + 'Topic :: Communications', + 'Intended Audience :: Developers', + 'Development Status :: 3 - Alpha', + ] )