diff --git a/IPython/core/release.py b/IPython/core/release.py index e94443b..1bb912b 100644 --- a/IPython/core/release.py +++ b/IPython/core/release.py @@ -123,3 +123,18 @@ download_url = 'http://archive.ipython.org/release/%s' % version platforms = ['Linux','Mac OSX','Windows XP/2000/NT'] keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed'] + +classifiers = [ + 'Intended Audience :: Developers', + 'Intended Audience :: Science/Research' + 'License :: OSI Approved :: BSD License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.1', + 'Programming Language :: Python :: 3.2', + 'Topic :: System :: Distributed Computing', + 'Topic :: System :: Shells' + ] diff --git a/setupbase.py b/setupbase.py index 2cebfde..f9e6e08 100644 --- a/setupbase.py +++ b/setupbase.py @@ -84,6 +84,7 @@ setup_args = dict( license = license, platforms = platforms, keywords = keywords, + classifiers = classifiers, cmdclass = {'install_data': install_data_ext}, )