1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

update setup.py classifiers

This commit is contained in:
Ilya Kreymer 2014-03-10 19:11:19 -07:00
parent f578bdf5de
commit fe9eaea006

View File

@ -14,7 +14,7 @@ except ImportError:
pass pass
long_description = open('README.md').read() long_description = open('README.rst').read()
class PyTest(TestCommand): class PyTest(TestCommand):
@ -81,4 +81,22 @@ setup(
wayback = pywb.apps.wayback:main wayback = pywb.apps.wayback:main
cdx-server = pywb.apps.cdx_server:main cdx-server = pywb.apps.cdx_server:main
""" """
) zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'License :: OSI Approved :: GNU General Public License (GPL)',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: Proxy Servers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Archiving',
'Topic :: System :: Archiving :: Backup',
'Topic :: Utilities',
])