From cf9d74ed62947437f6bc6aa559fc6d5d5dec72ad Mon Sep 17 00:00:00 2001 From: JuanPablo Date: Sun, 15 Mar 2015 14:16:45 -0300 Subject: [PATCH] classifiers added to setup.py --- setup.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d99b883..5fe854b 100644 --- a/setup.py +++ b/setup.py @@ -26,5 +26,15 @@ 'console_scripts': [ 'joe=joe.joe:main' ], - } + }, + classifiers=( + 'Intended Audience :: Developers', + 'Natural Language :: English', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.1', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4' + ) )