wsme/setup.py
Christophe de Vienne 459b2fe099 Completing setup.py
2011-10-02 21:34:05 +02:00

31 lines
719 B
Python

import os
from setuptools import setup
execfile(os.path.join('wsme', 'release.py'))
setup(
name=name,
version=version,
description=description,
long_description=long_description,
author=author,
author_email=email,
url=url,
packages=['wsme', 'wsme.protocols'],
package_data={
'wsme.protocols': ['templates/*.html'],
},
install_requires=[
'simplegeneric',
'webob',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: WSGI'
'Topic :: Software Development :: Libraries :: Python Modules',
],
)