Completing setup.py

This commit is contained in:
Christophe de Vienne 2011-10-02 21:34:05 +02:00
parent 088a28f79b
commit 459b2fe099

View File

@ -12,16 +12,19 @@ setup(
author=author,
author_email=email,
url=url,
packages=['wsme'],
packages=['wsme', 'wsme.protocols'],
package_data={
'wsme.protocols': ['templates/*.html'],
},
install_requires=[
'simplegeneric',
'webob',
],
classifiers = [
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: WSGI'
'Topic :: Software Development :: Libraries :: Python Modules',
]
],
)