completed the setup informations
This commit is contained in:
parent
a08a53a1c4
commit
ffd8758b90
19
setup.py
19
setup.py
@ -1,10 +1,27 @@
|
|||||||
|
import os
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
|
execfile(os.path.join('wsme', 'release.py'))
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='wsme',
|
name=name,
|
||||||
|
version=version,
|
||||||
|
description=description,
|
||||||
|
long_description=long_description,
|
||||||
|
author=author,
|
||||||
|
author_email=email,
|
||||||
|
url=url,
|
||||||
packages=['wsme'],
|
packages=['wsme'],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'simplegeneric',
|
'simplegeneric',
|
||||||
'webob',
|
'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
14
wsme/release.py
Normal 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"
|
Loading…
x
Reference in New Issue
Block a user