From 459b2fe099400822cefc09e85ccafa2c7220c41b Mon Sep 17 00:00:00 2001 From: Christophe de Vienne Date: Sun, 2 Oct 2011 21:34:05 +0200 Subject: [PATCH] Completing setup.py --- setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index bc71757..487d30e 100644 --- a/setup.py +++ b/setup.py @@ -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', - ] + ], )