summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author?ric Araujo <merwok@netwok.org>2012-03-14 13:58:48 +0100
committer?ric Araujo <merwok@netwok.org>2012-03-14 13:58:48 +0100
commit1d494bc9cf8145ed663d32b7d5c6679424993ba2 (patch)
tree94b941d8b96287227b7cb0ded325f75c01ddb3a4
parenta2b5ba38c1dfcaef73f2cd7cb21d9f371a714992 (diff)
downloaddisutils2-1d494bc9cf8145ed663d32b7d5c6679424993ba2.tar.gz
Update list of Trove classifiers (these reproduce fast)
-rw-r--r--distutils2/_trove.py11
-rw-r--r--distutils2/command/register.py1
2 files changed, 11 insertions, 1 deletions
diff --git a/distutils2/_trove.py b/distutils2/_trove.py
index f527bc4..c5e4008 100644
--- a/distutils2/_trove.py
+++ b/distutils2/_trove.py
@@ -114,6 +114,7 @@ all_classifiers = [
'License :: OSI Approved :: Motosoto License',
'License :: OSI Approved :: Mozilla Public License 1.0 (MPL)',
'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
+'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'License :: OSI Approved :: Nethack General Public License',
'License :: OSI Approved :: Nokia Open Source License',
'License :: OSI Approved :: Open Group Test Suite License',
@@ -149,6 +150,7 @@ all_classifiers = [
'Natural Language :: Esperanto',
'Natural Language :: Finnish',
'Natural Language :: French',
+'Natural Language :: Galician',
'Natural Language :: German',
'Natural Language :: Greek',
'Natural Language :: Hebrew',
@@ -193,9 +195,14 @@ all_classifiers = [
'Operating System :: Microsoft :: MS-DOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: Microsoft :: Windows :: Windows 3.1 or Earlier',
+'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows 95/98/2000',
'Operating System :: Microsoft :: Windows :: Windows CE',
'Operating System :: Microsoft :: Windows :: Windows NT/2000',
+'Operating System :: Microsoft :: Windows :: Windows Server 2003',
+'Operating System :: Microsoft :: Windows :: Windows Server 2008',
+'Operating System :: Microsoft :: Windows :: Windows Vista',
+'Operating System :: Microsoft :: Windows :: Windows XP',
'Operating System :: OS/2',
'Operating System :: OS Independent',
'Operating System :: Other OS',
@@ -263,10 +270,12 @@ all_classifiers = [
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
+'Programming Language :: Python :: 2 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
+'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: IronPython',
@@ -449,8 +458,8 @@ all_classifiers = [
'Topic :: Printing',
'Topic :: Religion',
'Topic :: Scientific/Engineering',
-'Topic :: Scientific/Engineering :: Artificial Life',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
+'Topic :: Scientific/Engineering :: Artificial Life',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: Bio-Informatics',
diff --git a/distutils2/command/register.py b/distutils2/command/register.py
index e00d574..dbe63ee 100644
--- a/distutils2/command/register.py
+++ b/distutils2/command/register.py
@@ -80,6 +80,7 @@ class register(Command):
def classifiers(self):
''' Fetch the list of classifiers from the server.
'''
+ # TODO use _trove module
response = urllib2.urlopen(self.repository+'?:action=list_classifiers')
logger.info(response.read())