| 1 | n/a | """Temporary helper for create.""" |
|---|
| 2 | n/a | |
|---|
| 3 | n/a | # XXX get the list from PyPI and cache it instead of hardcoding |
|---|
| 4 | n/a | |
|---|
| 5 | n/a | # XXX see if it would be more useful to store it as another structure |
|---|
| 6 | n/a | # than a list of strings |
|---|
| 7 | n/a | |
|---|
| 8 | n/a | all_classifiers = [ |
|---|
| 9 | n/a | 'Development Status :: 1 - Planning', |
|---|
| 10 | n/a | 'Development Status :: 2 - Pre-Alpha', |
|---|
| 11 | n/a | 'Development Status :: 3 - Alpha', |
|---|
| 12 | n/a | 'Development Status :: 4 - Beta', |
|---|
| 13 | n/a | 'Development Status :: 5 - Production/Stable', |
|---|
| 14 | n/a | 'Development Status :: 6 - Mature', |
|---|
| 15 | n/a | 'Development Status :: 7 - Inactive', |
|---|
| 16 | n/a | 'Environment :: Console', |
|---|
| 17 | n/a | 'Environment :: Console :: Curses', |
|---|
| 18 | n/a | 'Environment :: Console :: Framebuffer', |
|---|
| 19 | n/a | 'Environment :: Console :: Newt', |
|---|
| 20 | n/a | 'Environment :: Console :: svgalib', |
|---|
| 21 | n/a | "Environment :: Handhelds/PDA's", |
|---|
| 22 | n/a | 'Environment :: MacOS X', |
|---|
| 23 | n/a | 'Environment :: MacOS X :: Aqua', |
|---|
| 24 | n/a | 'Environment :: MacOS X :: Carbon', |
|---|
| 25 | n/a | 'Environment :: MacOS X :: Cocoa', |
|---|
| 26 | n/a | 'Environment :: No Input/Output (Daemon)', |
|---|
| 27 | n/a | 'Environment :: Other Environment', |
|---|
| 28 | n/a | 'Environment :: Plugins', |
|---|
| 29 | n/a | 'Environment :: Web Environment', |
|---|
| 30 | n/a | 'Environment :: Web Environment :: Buffet', |
|---|
| 31 | n/a | 'Environment :: Web Environment :: Mozilla', |
|---|
| 32 | n/a | 'Environment :: Web Environment :: ToscaWidgets', |
|---|
| 33 | n/a | 'Environment :: Win32 (MS Windows)', |
|---|
| 34 | n/a | 'Environment :: X11 Applications', |
|---|
| 35 | n/a | 'Environment :: X11 Applications :: Gnome', |
|---|
| 36 | n/a | 'Environment :: X11 Applications :: GTK', |
|---|
| 37 | n/a | 'Environment :: X11 Applications :: KDE', |
|---|
| 38 | n/a | 'Environment :: X11 Applications :: Qt', |
|---|
| 39 | n/a | 'Framework :: BFG', |
|---|
| 40 | n/a | 'Framework :: Buildout', |
|---|
| 41 | n/a | 'Framework :: Buildout :: Extension', |
|---|
| 42 | n/a | 'Framework :: Buildout :: Recipe', |
|---|
| 43 | n/a | 'Framework :: Chandler', |
|---|
| 44 | n/a | 'Framework :: CherryPy', |
|---|
| 45 | n/a | 'Framework :: CubicWeb', |
|---|
| 46 | n/a | 'Framework :: Django', |
|---|
| 47 | n/a | 'Framework :: IDLE', |
|---|
| 48 | n/a | 'Framework :: Paste', |
|---|
| 49 | n/a | 'Framework :: Plone', |
|---|
| 50 | n/a | 'Framework :: Plone :: 3.2', |
|---|
| 51 | n/a | 'Framework :: Plone :: 3.3', |
|---|
| 52 | n/a | 'Framework :: Plone :: 4.0', |
|---|
| 53 | n/a | 'Framework :: Plone :: 4.1', |
|---|
| 54 | n/a | 'Framework :: Plone :: 4.2', |
|---|
| 55 | n/a | 'Framework :: Plone :: 4.3', |
|---|
| 56 | n/a | 'Framework :: Pylons', |
|---|
| 57 | n/a | 'Framework :: Setuptools Plugin', |
|---|
| 58 | n/a | 'Framework :: Trac', |
|---|
| 59 | n/a | 'Framework :: Tryton', |
|---|
| 60 | n/a | 'Framework :: TurboGears', |
|---|
| 61 | n/a | 'Framework :: TurboGears :: Applications', |
|---|
| 62 | n/a | 'Framework :: TurboGears :: Widgets', |
|---|
| 63 | n/a | 'Framework :: Twisted', |
|---|
| 64 | n/a | 'Framework :: ZODB', |
|---|
| 65 | n/a | 'Framework :: Zope2', |
|---|
| 66 | n/a | 'Framework :: Zope3', |
|---|
| 67 | n/a | 'Intended Audience :: Customer Service', |
|---|
| 68 | n/a | 'Intended Audience :: Developers', |
|---|
| 69 | n/a | 'Intended Audience :: Education', |
|---|
| 70 | n/a | 'Intended Audience :: End Users/Desktop', |
|---|
| 71 | n/a | 'Intended Audience :: Financial and Insurance Industry', |
|---|
| 72 | n/a | 'Intended Audience :: Healthcare Industry', |
|---|
| 73 | n/a | 'Intended Audience :: Information Technology', |
|---|
| 74 | n/a | 'Intended Audience :: Legal Industry', |
|---|
| 75 | n/a | 'Intended Audience :: Manufacturing', |
|---|
| 76 | n/a | 'Intended Audience :: Other Audience', |
|---|
| 77 | n/a | 'Intended Audience :: Religion', |
|---|
| 78 | n/a | 'Intended Audience :: Science/Research', |
|---|
| 79 | n/a | 'Intended Audience :: System Administrators', |
|---|
| 80 | n/a | 'Intended Audience :: Telecommunications Industry', |
|---|
| 81 | n/a | 'License :: Aladdin Free Public License (AFPL)', |
|---|
| 82 | n/a | 'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication', |
|---|
| 83 | n/a | 'License :: DFSG approved', |
|---|
| 84 | n/a | 'License :: Eiffel Forum License (EFL)', |
|---|
| 85 | n/a | 'License :: Free For Educational Use', |
|---|
| 86 | n/a | 'License :: Free For Home Use', |
|---|
| 87 | n/a | 'License :: Free for non-commercial use', |
|---|
| 88 | n/a | 'License :: Freely Distributable', |
|---|
| 89 | n/a | 'License :: Free To Use But Restricted', |
|---|
| 90 | n/a | 'License :: Freeware', |
|---|
| 91 | n/a | 'License :: Netscape Public License (NPL)', |
|---|
| 92 | n/a | 'License :: Nokia Open Source License (NOKOS)', |
|---|
| 93 | n/a | 'License :: OSI Approved', |
|---|
| 94 | n/a | 'License :: OSI Approved :: Academic Free License (AFL)', |
|---|
| 95 | n/a | 'License :: OSI Approved :: Apache Software License', |
|---|
| 96 | n/a | 'License :: OSI Approved :: Apple Public Source License', |
|---|
| 97 | n/a | 'License :: OSI Approved :: Artistic License', |
|---|
| 98 | n/a | 'License :: OSI Approved :: Attribution Assurance License', |
|---|
| 99 | n/a | 'License :: OSI Approved :: BSD License', |
|---|
| 100 | n/a | 'License :: OSI Approved :: Common Public License', |
|---|
| 101 | n/a | 'License :: OSI Approved :: Eiffel Forum License', |
|---|
| 102 | n/a | 'License :: OSI Approved :: European Union Public Licence 1.0 (EUPL 1.0)', |
|---|
| 103 | n/a | 'License :: OSI Approved :: European Union Public Licence 1.1 (EUPL 1.1)', |
|---|
| 104 | n/a | 'License :: OSI Approved :: GNU Affero General Public License v3', |
|---|
| 105 | n/a | 'License :: OSI Approved :: GNU Free Documentation License (FDL)', |
|---|
| 106 | n/a | 'License :: OSI Approved :: GNU General Public License (GPL)', |
|---|
| 107 | n/a | 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', |
|---|
| 108 | n/a | 'License :: OSI Approved :: IBM Public License', |
|---|
| 109 | n/a | 'License :: OSI Approved :: Intel Open Source License', |
|---|
| 110 | n/a | 'License :: OSI Approved :: ISC License (ISCL)', |
|---|
| 111 | n/a | 'License :: OSI Approved :: Jabber Open Source License', |
|---|
| 112 | n/a | 'License :: OSI Approved :: MIT License', |
|---|
| 113 | n/a | 'License :: OSI Approved :: MITRE Collaborative Virtual Workspace License (CVW)', |
|---|
| 114 | n/a | 'License :: OSI Approved :: Motosoto License', |
|---|
| 115 | n/a | 'License :: OSI Approved :: Mozilla Public License 1.0 (MPL)', |
|---|
| 116 | n/a | 'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)', |
|---|
| 117 | n/a | 'License :: OSI Approved :: Nethack General Public License', |
|---|
| 118 | n/a | 'License :: OSI Approved :: Nokia Open Source License', |
|---|
| 119 | n/a | 'License :: OSI Approved :: Open Group Test Suite License', |
|---|
| 120 | n/a | 'License :: OSI Approved :: Python License (CNRI Python License)', |
|---|
| 121 | n/a | 'License :: OSI Approved :: Python Software Foundation License', |
|---|
| 122 | n/a | 'License :: OSI Approved :: Qt Public License (QPL)', |
|---|
| 123 | n/a | 'License :: OSI Approved :: Ricoh Source Code Public License', |
|---|
| 124 | n/a | 'License :: OSI Approved :: Sleepycat License', |
|---|
| 125 | n/a | 'License :: OSI Approved :: Sun Industry Standards Source License (SISSL)', |
|---|
| 126 | n/a | 'License :: OSI Approved :: Sun Public License', |
|---|
| 127 | n/a | 'License :: OSI Approved :: University of Illinois/NCSA Open Source License', |
|---|
| 128 | n/a | 'License :: OSI Approved :: Vovida Software License 1.0', |
|---|
| 129 | n/a | 'License :: OSI Approved :: W3C License', |
|---|
| 130 | n/a | 'License :: OSI Approved :: X.Net License', |
|---|
| 131 | n/a | 'License :: OSI Approved :: zlib/libpng License', |
|---|
| 132 | n/a | 'License :: OSI Approved :: Zope Public License', |
|---|
| 133 | n/a | 'License :: Other/Proprietary License', |
|---|
| 134 | n/a | 'License :: Public Domain', |
|---|
| 135 | n/a | 'License :: Repoze Public License', |
|---|
| 136 | n/a | 'Natural Language :: Afrikaans', |
|---|
| 137 | n/a | 'Natural Language :: Arabic', |
|---|
| 138 | n/a | 'Natural Language :: Bengali', |
|---|
| 139 | n/a | 'Natural Language :: Bosnian', |
|---|
| 140 | n/a | 'Natural Language :: Bulgarian', |
|---|
| 141 | n/a | 'Natural Language :: Catalan', |
|---|
| 142 | n/a | 'Natural Language :: Chinese (Simplified)', |
|---|
| 143 | n/a | 'Natural Language :: Chinese (Traditional)', |
|---|
| 144 | n/a | 'Natural Language :: Croatian', |
|---|
| 145 | n/a | 'Natural Language :: Czech', |
|---|
| 146 | n/a | 'Natural Language :: Danish', |
|---|
| 147 | n/a | 'Natural Language :: Dutch', |
|---|
| 148 | n/a | 'Natural Language :: English', |
|---|
| 149 | n/a | 'Natural Language :: Esperanto', |
|---|
| 150 | n/a | 'Natural Language :: Finnish', |
|---|
| 151 | n/a | 'Natural Language :: French', |
|---|
| 152 | n/a | 'Natural Language :: German', |
|---|
| 153 | n/a | 'Natural Language :: Greek', |
|---|
| 154 | n/a | 'Natural Language :: Hebrew', |
|---|
| 155 | n/a | 'Natural Language :: Hindi', |
|---|
| 156 | n/a | 'Natural Language :: Hungarian', |
|---|
| 157 | n/a | 'Natural Language :: Icelandic', |
|---|
| 158 | n/a | 'Natural Language :: Indonesian', |
|---|
| 159 | n/a | 'Natural Language :: Italian', |
|---|
| 160 | n/a | 'Natural Language :: Japanese', |
|---|
| 161 | n/a | 'Natural Language :: Javanese', |
|---|
| 162 | n/a | 'Natural Language :: Korean', |
|---|
| 163 | n/a | 'Natural Language :: Latin', |
|---|
| 164 | n/a | 'Natural Language :: Latvian', |
|---|
| 165 | n/a | 'Natural Language :: Macedonian', |
|---|
| 166 | n/a | 'Natural Language :: Malay', |
|---|
| 167 | n/a | 'Natural Language :: Marathi', |
|---|
| 168 | n/a | 'Natural Language :: Norwegian', |
|---|
| 169 | n/a | 'Natural Language :: Panjabi', |
|---|
| 170 | n/a | 'Natural Language :: Persian', |
|---|
| 171 | n/a | 'Natural Language :: Polish', |
|---|
| 172 | n/a | 'Natural Language :: Portuguese', |
|---|
| 173 | n/a | 'Natural Language :: Portuguese (Brazilian)', |
|---|
| 174 | n/a | 'Natural Language :: Romanian', |
|---|
| 175 | n/a | 'Natural Language :: Russian', |
|---|
| 176 | n/a | 'Natural Language :: Serbian', |
|---|
| 177 | n/a | 'Natural Language :: Slovak', |
|---|
| 178 | n/a | 'Natural Language :: Slovenian', |
|---|
| 179 | n/a | 'Natural Language :: Spanish', |
|---|
| 180 | n/a | 'Natural Language :: Swedish', |
|---|
| 181 | n/a | 'Natural Language :: Tamil', |
|---|
| 182 | n/a | 'Natural Language :: Telugu', |
|---|
| 183 | n/a | 'Natural Language :: Thai', |
|---|
| 184 | n/a | 'Natural Language :: Turkish', |
|---|
| 185 | n/a | 'Natural Language :: Ukranian', |
|---|
| 186 | n/a | 'Natural Language :: Urdu', |
|---|
| 187 | n/a | 'Natural Language :: Vietnamese', |
|---|
| 188 | n/a | 'Operating System :: BeOS', |
|---|
| 189 | n/a | 'Operating System :: MacOS', |
|---|
| 190 | n/a | 'Operating System :: MacOS :: MacOS 9', |
|---|
| 191 | n/a | 'Operating System :: MacOS :: MacOS X', |
|---|
| 192 | n/a | 'Operating System :: Microsoft', |
|---|
| 193 | n/a | 'Operating System :: Microsoft :: MS-DOS', |
|---|
| 194 | n/a | 'Operating System :: Microsoft :: Windows', |
|---|
| 195 | n/a | 'Operating System :: Microsoft :: Windows :: Windows 3.1 or Earlier', |
|---|
| 196 | n/a | 'Operating System :: Microsoft :: Windows :: Windows 95/98/2000', |
|---|
| 197 | n/a | 'Operating System :: Microsoft :: Windows :: Windows CE', |
|---|
| 198 | n/a | 'Operating System :: Microsoft :: Windows :: Windows NT/2000', |
|---|
| 199 | n/a | 'Operating System :: OS/2', |
|---|
| 200 | n/a | 'Operating System :: OS Independent', |
|---|
| 201 | n/a | 'Operating System :: Other OS', |
|---|
| 202 | n/a | 'Operating System :: PalmOS', |
|---|
| 203 | n/a | 'Operating System :: PDA Systems', |
|---|
| 204 | n/a | 'Operating System :: POSIX', |
|---|
| 205 | n/a | 'Operating System :: POSIX :: AIX', |
|---|
| 206 | n/a | 'Operating System :: POSIX :: BSD', |
|---|
| 207 | n/a | 'Operating System :: POSIX :: BSD :: BSD/OS', |
|---|
| 208 | n/a | 'Operating System :: POSIX :: BSD :: FreeBSD', |
|---|
| 209 | n/a | 'Operating System :: POSIX :: BSD :: NetBSD', |
|---|
| 210 | n/a | 'Operating System :: POSIX :: BSD :: OpenBSD', |
|---|
| 211 | n/a | 'Operating System :: POSIX :: GNU Hurd', |
|---|
| 212 | n/a | 'Operating System :: POSIX :: HP-UX', |
|---|
| 213 | n/a | 'Operating System :: POSIX :: IRIX', |
|---|
| 214 | n/a | 'Operating System :: POSIX :: Linux', |
|---|
| 215 | n/a | 'Operating System :: POSIX :: Other', |
|---|
| 216 | n/a | 'Operating System :: POSIX :: SCO', |
|---|
| 217 | n/a | 'Operating System :: POSIX :: SunOS/Solaris', |
|---|
| 218 | n/a | 'Operating System :: Unix', |
|---|
| 219 | n/a | 'Programming Language :: Ada', |
|---|
| 220 | n/a | 'Programming Language :: APL', |
|---|
| 221 | n/a | 'Programming Language :: ASP', |
|---|
| 222 | n/a | 'Programming Language :: Assembly', |
|---|
| 223 | n/a | 'Programming Language :: Awk', |
|---|
| 224 | n/a | 'Programming Language :: Basic', |
|---|
| 225 | n/a | 'Programming Language :: C', |
|---|
| 226 | n/a | 'Programming Language :: C#', |
|---|
| 227 | n/a | 'Programming Language :: C++', |
|---|
| 228 | n/a | 'Programming Language :: Cold Fusion', |
|---|
| 229 | n/a | 'Programming Language :: Cython', |
|---|
| 230 | n/a | 'Programming Language :: Delphi/Kylix', |
|---|
| 231 | n/a | 'Programming Language :: Dylan', |
|---|
| 232 | n/a | 'Programming Language :: Eiffel', |
|---|
| 233 | n/a | 'Programming Language :: Emacs-Lisp', |
|---|
| 234 | n/a | 'Programming Language :: Erlang', |
|---|
| 235 | n/a | 'Programming Language :: Euler', |
|---|
| 236 | n/a | 'Programming Language :: Euphoria', |
|---|
| 237 | n/a | 'Programming Language :: Forth', |
|---|
| 238 | n/a | 'Programming Language :: Fortran', |
|---|
| 239 | n/a | 'Programming Language :: Haskell', |
|---|
| 240 | n/a | 'Programming Language :: Java', |
|---|
| 241 | n/a | 'Programming Language :: JavaScript', |
|---|
| 242 | n/a | 'Programming Language :: Lisp', |
|---|
| 243 | n/a | 'Programming Language :: Logo', |
|---|
| 244 | n/a | 'Programming Language :: ML', |
|---|
| 245 | n/a | 'Programming Language :: Modula', |
|---|
| 246 | n/a | 'Programming Language :: Objective C', |
|---|
| 247 | n/a | 'Programming Language :: Object Pascal', |
|---|
| 248 | n/a | 'Programming Language :: OCaml', |
|---|
| 249 | n/a | 'Programming Language :: Other', |
|---|
| 250 | n/a | 'Programming Language :: Other Scripting Engines', |
|---|
| 251 | n/a | 'Programming Language :: Pascal', |
|---|
| 252 | n/a | 'Programming Language :: Perl', |
|---|
| 253 | n/a | 'Programming Language :: PHP', |
|---|
| 254 | n/a | 'Programming Language :: Pike', |
|---|
| 255 | n/a | 'Programming Language :: Pliant', |
|---|
| 256 | n/a | 'Programming Language :: PL/SQL', |
|---|
| 257 | n/a | 'Programming Language :: PROGRESS', |
|---|
| 258 | n/a | 'Programming Language :: Prolog', |
|---|
| 259 | n/a | 'Programming Language :: Python', |
|---|
| 260 | n/a | 'Programming Language :: Python :: 2', |
|---|
| 261 | n/a | 'Programming Language :: Python :: 2.3', |
|---|
| 262 | n/a | 'Programming Language :: Python :: 2.4', |
|---|
| 263 | n/a | 'Programming Language :: Python :: 2.5', |
|---|
| 264 | n/a | 'Programming Language :: Python :: 2.6', |
|---|
| 265 | n/a | 'Programming Language :: Python :: 2.7', |
|---|
| 266 | n/a | 'Programming Language :: Python :: 3', |
|---|
| 267 | n/a | 'Programming Language :: Python :: 3.0', |
|---|
| 268 | n/a | 'Programming Language :: Python :: 3.1', |
|---|
| 269 | n/a | 'Programming Language :: Python :: 3.2', |
|---|
| 270 | n/a | 'Programming Language :: Python :: Implementation', |
|---|
| 271 | n/a | 'Programming Language :: Python :: Implementation :: CPython', |
|---|
| 272 | n/a | 'Programming Language :: Python :: Implementation :: IronPython', |
|---|
| 273 | n/a | 'Programming Language :: Python :: Implementation :: Jython', |
|---|
| 274 | n/a | 'Programming Language :: Python :: Implementation :: PyPy', |
|---|
| 275 | n/a | 'Programming Language :: Python :: Implementation :: Stackless', |
|---|
| 276 | n/a | 'Programming Language :: REBOL', |
|---|
| 277 | n/a | 'Programming Language :: Rexx', |
|---|
| 278 | n/a | 'Programming Language :: Ruby', |
|---|
| 279 | n/a | 'Programming Language :: Scheme', |
|---|
| 280 | n/a | 'Programming Language :: Simula', |
|---|
| 281 | n/a | 'Programming Language :: Smalltalk', |
|---|
| 282 | n/a | 'Programming Language :: SQL', |
|---|
| 283 | n/a | 'Programming Language :: Tcl', |
|---|
| 284 | n/a | 'Programming Language :: Unix Shell', |
|---|
| 285 | n/a | 'Programming Language :: Visual Basic', |
|---|
| 286 | n/a | 'Programming Language :: XBasic', |
|---|
| 287 | n/a | 'Programming Language :: YACC', |
|---|
| 288 | n/a | 'Programming Language :: Zope', |
|---|
| 289 | n/a | 'Topic :: Adaptive Technologies', |
|---|
| 290 | n/a | 'Topic :: Artistic Software', |
|---|
| 291 | n/a | 'Topic :: Communications', |
|---|
| 292 | n/a | 'Topic :: Communications :: BBS', |
|---|
| 293 | n/a | 'Topic :: Communications :: Chat', |
|---|
| 294 | n/a | 'Topic :: Communications :: Chat :: AOL Instant Messenger', |
|---|
| 295 | n/a | 'Topic :: Communications :: Chat :: ICQ', |
|---|
| 296 | n/a | 'Topic :: Communications :: Chat :: Internet Relay Chat', |
|---|
| 297 | n/a | 'Topic :: Communications :: Chat :: Unix Talk', |
|---|
| 298 | n/a | 'Topic :: Communications :: Conferencing', |
|---|
| 299 | n/a | 'Topic :: Communications :: Email', |
|---|
| 300 | n/a | 'Topic :: Communications :: Email :: Address Book', |
|---|
| 301 | n/a | 'Topic :: Communications :: Email :: Email Clients (MUA)', |
|---|
| 302 | n/a | 'Topic :: Communications :: Email :: Filters', |
|---|
| 303 | n/a | 'Topic :: Communications :: Email :: Mailing List Servers', |
|---|
| 304 | n/a | 'Topic :: Communications :: Email :: Mail Transport Agents', |
|---|
| 305 | n/a | 'Topic :: Communications :: Email :: Post-Office', |
|---|
| 306 | n/a | 'Topic :: Communications :: Email :: Post-Office :: IMAP', |
|---|
| 307 | n/a | 'Topic :: Communications :: Email :: Post-Office :: POP3', |
|---|
| 308 | n/a | 'Topic :: Communications :: Fax', |
|---|
| 309 | n/a | 'Topic :: Communications :: FIDO', |
|---|
| 310 | n/a | 'Topic :: Communications :: File Sharing', |
|---|
| 311 | n/a | 'Topic :: Communications :: File Sharing :: Gnutella', |
|---|
| 312 | n/a | 'Topic :: Communications :: File Sharing :: Napster', |
|---|
| 313 | n/a | 'Topic :: Communications :: Ham Radio', |
|---|
| 314 | n/a | 'Topic :: Communications :: Internet Phone', |
|---|
| 315 | n/a | 'Topic :: Communications :: Telephony', |
|---|
| 316 | n/a | 'Topic :: Communications :: Usenet News', |
|---|
| 317 | n/a | 'Topic :: Database', |
|---|
| 318 | n/a | 'Topic :: Database :: Database Engines/Servers', |
|---|
| 319 | n/a | 'Topic :: Database :: Front-Ends', |
|---|
| 320 | n/a | 'Topic :: Desktop Environment', |
|---|
| 321 | n/a | 'Topic :: Desktop Environment :: File Managers', |
|---|
| 322 | n/a | 'Topic :: Desktop Environment :: Gnome', |
|---|
| 323 | n/a | 'Topic :: Desktop Environment :: GNUstep', |
|---|
| 324 | n/a | 'Topic :: Desktop Environment :: K Desktop Environment (KDE)', |
|---|
| 325 | n/a | 'Topic :: Desktop Environment :: K Desktop Environment (KDE) :: Themes', |
|---|
| 326 | n/a | 'Topic :: Desktop Environment :: PicoGUI', |
|---|
| 327 | n/a | 'Topic :: Desktop Environment :: PicoGUI :: Applications', |
|---|
| 328 | n/a | 'Topic :: Desktop Environment :: PicoGUI :: Themes', |
|---|
| 329 | n/a | 'Topic :: Desktop Environment :: Screen Savers', |
|---|
| 330 | n/a | 'Topic :: Desktop Environment :: Window Managers', |
|---|
| 331 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Afterstep', |
|---|
| 332 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Afterstep :: Themes', |
|---|
| 333 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Applets', |
|---|
| 334 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Blackbox', |
|---|
| 335 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Blackbox :: Themes', |
|---|
| 336 | n/a | 'Topic :: Desktop Environment :: Window Managers :: CTWM', |
|---|
| 337 | n/a | 'Topic :: Desktop Environment :: Window Managers :: CTWM :: Themes', |
|---|
| 338 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Enlightenment', |
|---|
| 339 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Epplets', |
|---|
| 340 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Themes DR15', |
|---|
| 341 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Themes DR16', |
|---|
| 342 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Themes DR17', |
|---|
| 343 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Fluxbox', |
|---|
| 344 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Fluxbox :: Themes', |
|---|
| 345 | n/a | 'Topic :: Desktop Environment :: Window Managers :: FVWM', |
|---|
| 346 | n/a | 'Topic :: Desktop Environment :: Window Managers :: FVWM :: Themes', |
|---|
| 347 | n/a | 'Topic :: Desktop Environment :: Window Managers :: IceWM', |
|---|
| 348 | n/a | 'Topic :: Desktop Environment :: Window Managers :: IceWM :: Themes', |
|---|
| 349 | n/a | 'Topic :: Desktop Environment :: Window Managers :: MetaCity', |
|---|
| 350 | n/a | 'Topic :: Desktop Environment :: Window Managers :: MetaCity :: Themes', |
|---|
| 351 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Oroborus', |
|---|
| 352 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Oroborus :: Themes', |
|---|
| 353 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Sawfish', |
|---|
| 354 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Sawfish :: Themes 0.30', |
|---|
| 355 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Sawfish :: Themes pre-0.30', |
|---|
| 356 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Waimea', |
|---|
| 357 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Waimea :: Themes', |
|---|
| 358 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Window Maker', |
|---|
| 359 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Window Maker :: Applets', |
|---|
| 360 | n/a | 'Topic :: Desktop Environment :: Window Managers :: Window Maker :: Themes', |
|---|
| 361 | n/a | 'Topic :: Desktop Environment :: Window Managers :: XFCE', |
|---|
| 362 | n/a | 'Topic :: Desktop Environment :: Window Managers :: XFCE :: Themes', |
|---|
| 363 | n/a | 'Topic :: Documentation', |
|---|
| 364 | n/a | 'Topic :: Education', |
|---|
| 365 | n/a | 'Topic :: Education :: Computer Aided Instruction (CAI)', |
|---|
| 366 | n/a | 'Topic :: Education :: Testing', |
|---|
| 367 | n/a | 'Topic :: Games/Entertainment', |
|---|
| 368 | n/a | 'Topic :: Games/Entertainment :: Arcade', |
|---|
| 369 | n/a | 'Topic :: Games/Entertainment :: Board Games', |
|---|
| 370 | n/a | 'Topic :: Games/Entertainment :: First Person Shooters', |
|---|
| 371 | n/a | 'Topic :: Games/Entertainment :: Fortune Cookies', |
|---|
| 372 | n/a | 'Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)', |
|---|
| 373 | n/a | 'Topic :: Games/Entertainment :: Puzzle Games', |
|---|
| 374 | n/a | 'Topic :: Games/Entertainment :: Real Time Strategy', |
|---|
| 375 | n/a | 'Topic :: Games/Entertainment :: Role-Playing', |
|---|
| 376 | n/a | 'Topic :: Games/Entertainment :: Side-Scrolling/Arcade Games', |
|---|
| 377 | n/a | 'Topic :: Games/Entertainment :: Simulation', |
|---|
| 378 | n/a | 'Topic :: Games/Entertainment :: Turn Based Strategy', |
|---|
| 379 | n/a | 'Topic :: Home Automation', |
|---|
| 380 | n/a | 'Topic :: Internet', |
|---|
| 381 | n/a | 'Topic :: Internet :: File Transfer Protocol (FTP)', |
|---|
| 382 | n/a | 'Topic :: Internet :: Finger', |
|---|
| 383 | n/a | 'Topic :: Internet :: Log Analysis', |
|---|
| 384 | n/a | 'Topic :: Internet :: Name Service (DNS)', |
|---|
| 385 | n/a | 'Topic :: Internet :: Proxy Servers', |
|---|
| 386 | n/a | 'Topic :: Internet :: WAP', |
|---|
| 387 | n/a | 'Topic :: Internet :: WWW/HTTP', |
|---|
| 388 | n/a | 'Topic :: Internet :: WWW/HTTP :: Browsers', |
|---|
| 389 | n/a | 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', |
|---|
| 390 | n/a | 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries', |
|---|
| 391 | n/a | 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards', |
|---|
| 392 | n/a | 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary', |
|---|
| 393 | n/a | 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Page Counters', |
|---|
| 394 | n/a | 'Topic :: Internet :: WWW/HTTP :: HTTP Servers', |
|---|
| 395 | n/a | 'Topic :: Internet :: WWW/HTTP :: Indexing/Search', |
|---|
| 396 | n/a | 'Topic :: Internet :: WWW/HTTP :: Session', |
|---|
| 397 | n/a | 'Topic :: Internet :: WWW/HTTP :: Site Management', |
|---|
| 398 | n/a | 'Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking', |
|---|
| 399 | n/a | 'Topic :: Internet :: WWW/HTTP :: WSGI', |
|---|
| 400 | n/a | 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', |
|---|
| 401 | n/a | 'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware', |
|---|
| 402 | n/a | 'Topic :: Internet :: WWW/HTTP :: WSGI :: Server', |
|---|
| 403 | n/a | 'Topic :: Internet :: Z39.50', |
|---|
| 404 | n/a | 'Topic :: Multimedia', |
|---|
| 405 | n/a | 'Topic :: Multimedia :: Graphics', |
|---|
| 406 | n/a | 'Topic :: Multimedia :: Graphics :: 3D Modeling', |
|---|
| 407 | n/a | 'Topic :: Multimedia :: Graphics :: 3D Rendering', |
|---|
| 408 | n/a | 'Topic :: Multimedia :: Graphics :: Capture', |
|---|
| 409 | n/a | 'Topic :: Multimedia :: Graphics :: Capture :: Digital Camera', |
|---|
| 410 | n/a | 'Topic :: Multimedia :: Graphics :: Capture :: Scanners', |
|---|
| 411 | n/a | 'Topic :: Multimedia :: Graphics :: Capture :: Screen Capture', |
|---|
| 412 | n/a | 'Topic :: Multimedia :: Graphics :: Editors', |
|---|
| 413 | n/a | 'Topic :: Multimedia :: Graphics :: Editors :: Raster-Based', |
|---|
| 414 | n/a | 'Topic :: Multimedia :: Graphics :: Editors :: Vector-Based', |
|---|
| 415 | n/a | 'Topic :: Multimedia :: Graphics :: Graphics Conversion', |
|---|
| 416 | n/a | 'Topic :: Multimedia :: Graphics :: Presentation', |
|---|
| 417 | n/a | 'Topic :: Multimedia :: Graphics :: Viewers', |
|---|
| 418 | n/a | 'Topic :: Multimedia :: Sound/Audio', |
|---|
| 419 | n/a | 'Topic :: Multimedia :: Sound/Audio :: Analysis', |
|---|
| 420 | n/a | 'Topic :: Multimedia :: Sound/Audio :: Capture/Recording', |
|---|
| 421 | n/a | 'Topic :: Multimedia :: Sound/Audio :: CD Audio', |
|---|
| 422 | n/a | 'Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Playing', |
|---|
| 423 | n/a | 'Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Ripping', |
|---|
| 424 | n/a | 'Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Writing', |
|---|
| 425 | n/a | 'Topic :: Multimedia :: Sound/Audio :: Conversion', |
|---|
| 426 | n/a | 'Topic :: Multimedia :: Sound/Audio :: Editors', |
|---|
| 427 | n/a | 'Topic :: Multimedia :: Sound/Audio :: MIDI', |
|---|
| 428 | n/a | 'Topic :: Multimedia :: Sound/Audio :: Mixers', |
|---|
| 429 | n/a | 'Topic :: Multimedia :: Sound/Audio :: Players', |
|---|
| 430 | n/a | 'Topic :: Multimedia :: Sound/Audio :: Players :: MP3', |
|---|
| 431 | n/a | 'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis', |
|---|
| 432 | n/a | 'Topic :: Multimedia :: Sound/Audio :: Speech', |
|---|
| 433 | n/a | 'Topic :: Multimedia :: Video', |
|---|
| 434 | n/a | 'Topic :: Multimedia :: Video :: Capture', |
|---|
| 435 | n/a | 'Topic :: Multimedia :: Video :: Conversion', |
|---|
| 436 | n/a | 'Topic :: Multimedia :: Video :: Display', |
|---|
| 437 | n/a | 'Topic :: Multimedia :: Video :: Non-Linear Editor', |
|---|
| 438 | n/a | 'Topic :: Office/Business', |
|---|
| 439 | n/a | 'Topic :: Office/Business :: Financial', |
|---|
| 440 | n/a | 'Topic :: Office/Business :: Financial :: Accounting', |
|---|
| 441 | n/a | 'Topic :: Office/Business :: Financial :: Investment', |
|---|
| 442 | n/a | 'Topic :: Office/Business :: Financial :: Point-Of-Sale', |
|---|
| 443 | n/a | 'Topic :: Office/Business :: Financial :: Spreadsheet', |
|---|
| 444 | n/a | 'Topic :: Office/Business :: Groupware', |
|---|
| 445 | n/a | 'Topic :: Office/Business :: News/Diary', |
|---|
| 446 | n/a | 'Topic :: Office/Business :: Office Suites', |
|---|
| 447 | n/a | 'Topic :: Office/Business :: Scheduling', |
|---|
| 448 | n/a | 'Topic :: Other/Nonlisted Topic', |
|---|
| 449 | n/a | 'Topic :: Printing', |
|---|
| 450 | n/a | 'Topic :: Religion', |
|---|
| 451 | n/a | 'Topic :: Scientific/Engineering', |
|---|
| 452 | n/a | 'Topic :: Scientific/Engineering :: Artificial Life', |
|---|
| 453 | n/a | 'Topic :: Scientific/Engineering :: Artificial Intelligence', |
|---|
| 454 | n/a | 'Topic :: Scientific/Engineering :: Astronomy', |
|---|
| 455 | n/a | 'Topic :: Scientific/Engineering :: Atmospheric Science', |
|---|
| 456 | n/a | 'Topic :: Scientific/Engineering :: Bio-Informatics', |
|---|
| 457 | n/a | 'Topic :: Scientific/Engineering :: Chemistry', |
|---|
| 458 | n/a | 'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)', |
|---|
| 459 | n/a | 'Topic :: Scientific/Engineering :: GIS', |
|---|
| 460 | n/a | 'Topic :: Scientific/Engineering :: Human Machine Interfaces', |
|---|
| 461 | n/a | 'Topic :: Scientific/Engineering :: Image Recognition', |
|---|
| 462 | n/a | 'Topic :: Scientific/Engineering :: Information Analysis', |
|---|
| 463 | n/a | 'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator', |
|---|
| 464 | n/a | 'Topic :: Scientific/Engineering :: Mathematics', |
|---|
| 465 | n/a | 'Topic :: Scientific/Engineering :: Medical Science Apps.', |
|---|
| 466 | n/a | 'Topic :: Scientific/Engineering :: Physics', |
|---|
| 467 | n/a | 'Topic :: Scientific/Engineering :: Visualization', |
|---|
| 468 | n/a | 'Topic :: Security', |
|---|
| 469 | n/a | 'Topic :: Security :: Cryptography', |
|---|
| 470 | n/a | 'Topic :: Sociology', |
|---|
| 471 | n/a | 'Topic :: Sociology :: Genealogy', |
|---|
| 472 | n/a | 'Topic :: Sociology :: History', |
|---|
| 473 | n/a | 'Topic :: Software Development', |
|---|
| 474 | n/a | 'Topic :: Software Development :: Assemblers', |
|---|
| 475 | n/a | 'Topic :: Software Development :: Bug Tracking', |
|---|
| 476 | n/a | 'Topic :: Software Development :: Build Tools', |
|---|
| 477 | n/a | 'Topic :: Software Development :: Code Generators', |
|---|
| 478 | n/a | 'Topic :: Software Development :: Compilers', |
|---|
| 479 | n/a | 'Topic :: Software Development :: Debuggers', |
|---|
| 480 | n/a | 'Topic :: Software Development :: Disassemblers', |
|---|
| 481 | n/a | 'Topic :: Software Development :: Documentation', |
|---|
| 482 | n/a | 'Topic :: Software Development :: Embedded Systems', |
|---|
| 483 | n/a | 'Topic :: Software Development :: Internationalization', |
|---|
| 484 | n/a | 'Topic :: Software Development :: Interpreters', |
|---|
| 485 | n/a | 'Topic :: Software Development :: Libraries', |
|---|
| 486 | n/a | 'Topic :: Software Development :: Libraries :: Application Frameworks', |
|---|
| 487 | n/a | 'Topic :: Software Development :: Libraries :: Java Libraries', |
|---|
| 488 | n/a | 'Topic :: Software Development :: Libraries :: Perl Modules', |
|---|
| 489 | n/a | 'Topic :: Software Development :: Libraries :: PHP Classes', |
|---|
| 490 | n/a | 'Topic :: Software Development :: Libraries :: Pike Modules', |
|---|
| 491 | n/a | 'Topic :: Software Development :: Libraries :: pygame', |
|---|
| 492 | n/a | 'Topic :: Software Development :: Libraries :: Python Modules', |
|---|
| 493 | n/a | 'Topic :: Software Development :: Libraries :: Ruby Modules', |
|---|
| 494 | n/a | 'Topic :: Software Development :: Libraries :: Tcl Extensions', |
|---|
| 495 | n/a | 'Topic :: Software Development :: Localization', |
|---|
| 496 | n/a | 'Topic :: Software Development :: Object Brokering', |
|---|
| 497 | n/a | 'Topic :: Software Development :: Object Brokering :: CORBA', |
|---|
| 498 | n/a | 'Topic :: Software Development :: Pre-processors', |
|---|
| 499 | n/a | 'Topic :: Software Development :: Quality Assurance', |
|---|
| 500 | n/a | 'Topic :: Software Development :: Testing', |
|---|
| 501 | n/a | 'Topic :: Software Development :: Testing :: Traffic Generation', |
|---|
| 502 | n/a | 'Topic :: Software Development :: User Interfaces', |
|---|
| 503 | n/a | 'Topic :: Software Development :: Version Control', |
|---|
| 504 | n/a | 'Topic :: Software Development :: Version Control :: CVS', |
|---|
| 505 | n/a | 'Topic :: Software Development :: Version Control :: RCS', |
|---|
| 506 | n/a | 'Topic :: Software Development :: Version Control :: SCCS', |
|---|
| 507 | n/a | 'Topic :: Software Development :: Widget Sets', |
|---|
| 508 | n/a | 'Topic :: System', |
|---|
| 509 | n/a | 'Topic :: System :: Archiving', |
|---|
| 510 | n/a | 'Topic :: System :: Archiving :: Backup', |
|---|
| 511 | n/a | 'Topic :: System :: Archiving :: Compression', |
|---|
| 512 | n/a | 'Topic :: System :: Archiving :: Mirroring', |
|---|
| 513 | n/a | 'Topic :: System :: Archiving :: Packaging', |
|---|
| 514 | n/a | 'Topic :: System :: Benchmark', |
|---|
| 515 | n/a | 'Topic :: System :: Boot', |
|---|
| 516 | n/a | 'Topic :: System :: Boot :: Init', |
|---|
| 517 | n/a | 'Topic :: System :: Clustering', |
|---|
| 518 | n/a | 'Topic :: System :: Console Fonts', |
|---|
| 519 | n/a | 'Topic :: System :: Distributed Computing', |
|---|
| 520 | n/a | 'Topic :: System :: Emulators', |
|---|
| 521 | n/a | 'Topic :: System :: Filesystems', |
|---|
| 522 | n/a | 'Topic :: System :: Hardware', |
|---|
| 523 | n/a | 'Topic :: System :: Hardware :: Hardware Drivers', |
|---|
| 524 | n/a | 'Topic :: System :: Hardware :: Mainframes', |
|---|
| 525 | n/a | 'Topic :: System :: Hardware :: Symmetric Multi-processing', |
|---|
| 526 | n/a | 'Topic :: System :: Installation/Setup', |
|---|
| 527 | n/a | 'Topic :: System :: Logging', |
|---|
| 528 | n/a | 'Topic :: System :: Monitoring', |
|---|
| 529 | n/a | 'Topic :: System :: Networking', |
|---|
| 530 | n/a | 'Topic :: System :: Networking :: Firewalls', |
|---|
| 531 | n/a | 'Topic :: System :: Networking :: Monitoring', |
|---|
| 532 | n/a | 'Topic :: System :: Networking :: Monitoring :: Hardware Watchdog', |
|---|
| 533 | n/a | 'Topic :: System :: Networking :: Time Synchronization', |
|---|
| 534 | n/a | 'Topic :: System :: Operating System', |
|---|
| 535 | n/a | 'Topic :: System :: Operating System Kernels', |
|---|
| 536 | n/a | 'Topic :: System :: Operating System Kernels :: BSD', |
|---|
| 537 | n/a | 'Topic :: System :: Operating System Kernels :: GNU Hurd', |
|---|
| 538 | n/a | 'Topic :: System :: Operating System Kernels :: Linux', |
|---|
| 539 | n/a | 'Topic :: System :: Power (UPS)', |
|---|
| 540 | n/a | 'Topic :: System :: Recovery Tools', |
|---|
| 541 | n/a | 'Topic :: System :: Shells', |
|---|
| 542 | n/a | 'Topic :: System :: Software Distribution', |
|---|
| 543 | n/a | 'Topic :: System :: Systems Administration', |
|---|
| 544 | n/a | 'Topic :: System :: Systems Administration :: Authentication/Directory', |
|---|
| 545 | n/a | 'Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP', |
|---|
| 546 | n/a | 'Topic :: System :: Systems Administration :: Authentication/Directory :: NIS', |
|---|
| 547 | n/a | 'Topic :: System :: System Shells', |
|---|
| 548 | n/a | 'Topic :: Terminals', |
|---|
| 549 | n/a | 'Topic :: Terminals :: Serial', |
|---|
| 550 | n/a | 'Topic :: Terminals :: Telnet', |
|---|
| 551 | n/a | 'Topic :: Terminals :: Terminal Emulators/X Terminals', |
|---|
| 552 | n/a | 'Topic :: Text Editors', |
|---|
| 553 | n/a | 'Topic :: Text Editors :: Documentation', |
|---|
| 554 | n/a | 'Topic :: Text Editors :: Emacs', |
|---|
| 555 | n/a | 'Topic :: Text Editors :: Integrated Development Environments (IDE)', |
|---|
| 556 | n/a | 'Topic :: Text Editors :: Text Processing', |
|---|
| 557 | n/a | 'Topic :: Text Editors :: Word Processors', |
|---|
| 558 | n/a | 'Topic :: Text Processing', |
|---|
| 559 | n/a | 'Topic :: Text Processing :: Filters', |
|---|
| 560 | n/a | 'Topic :: Text Processing :: Fonts', |
|---|
| 561 | n/a | 'Topic :: Text Processing :: General', |
|---|
| 562 | n/a | 'Topic :: Text Processing :: Indexing', |
|---|
| 563 | n/a | 'Topic :: Text Processing :: Linguistic', |
|---|
| 564 | n/a | 'Topic :: Text Processing :: Markup', |
|---|
| 565 | n/a | 'Topic :: Text Processing :: Markup :: HTML', |
|---|
| 566 | n/a | 'Topic :: Text Processing :: Markup :: LaTeX', |
|---|
| 567 | n/a | 'Topic :: Text Processing :: Markup :: SGML', |
|---|
| 568 | n/a | 'Topic :: Text Processing :: Markup :: VRML', |
|---|
| 569 | n/a | 'Topic :: Text Processing :: Markup :: XML', |
|---|
| 570 | n/a | 'Topic :: Utilities', |
|---|
| 571 | n/a | ] |
|---|