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=author,
author_email=email, author_email=email,
url=url, url=url,
packages=['wsme'], packages=['wsme', 'wsme.protocols'],
package_data={
'wsme.protocols': ['templates/*.html'],
},
install_requires=[ install_requires=[
'simplegeneric', 'simplegeneric',
'webob', 'webob',
], ],
classifiers = [ classifiers=[
'Development Status :: 3 - Alpha', 'Development Status :: 3 - Alpha',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python', 'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: WSGI' 'Topic :: Internet :: WWW/HTTP :: WSGI'
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
] ],
) )