From 6b9cabb92e9c9eda40f341c9097f952a7f36de86 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Mon, 4 Mar 2013 19:10:27 +0100 Subject: [PATCH] Updated version and add trove classifiers. --- setup.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d9b575353..b636d8f10 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ from distutils.command.register import register from distutils import util from distutils.file_util import write_file -AppVersion = '1.11' +AppVersion = '1.12' AppName = 'Dosage' py_excludes = ['doctest', 'unittest', 'Tkinter', 'pdb', @@ -419,6 +419,16 @@ args = dict( options = { "py2exe": py2exe_options, }, + classifiers = [ + 'Environment :: Console', + 'Intended Audience :: End Users/Desktop', + 'Topic :: Multimedia :: Graphics', + 'Topic :: Internet :: WWW/HTTP', + 'Development Status :: 4 - Beta', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Programming Language :: Python', + 'Operating System :: OS Independent', + ], ) if __name__ == '__main__':