completed the setup informations

This commit is contained in:
Christophe de Vienne 2011-10-01 14:15:44 +02:00
parent a08a53a1c4
commit ffd8758b90
2 changed files with 32 additions and 1 deletions

View File

@ -1,10 +1,27 @@
import os
from setuptools import setup
execfile(os.path.join('wsme', 'release.py'))
setup(
name='wsme',
name=name,
version=version,
description=description,
long_description=long_description,
author=author,
author_email=email,
url=url,
packages=['wsme'],
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',
]
)

14
wsme/release.py Normal file
View File

@ -0,0 +1,14 @@
name = "WSME"
version = "0.1"
description = "Web Services Made Easy"
long_description = """
Web Service Made Easy is a pure-wsgi and modular rewrite of TGWebServices.
"""
author = "Christophe de Vienne"
email = "cdevienne@gmail.com"
url = "http://bitbucket.org/cdevienne/wsme"
license = "MIT"