2012-09-17 23:03:19 +02:00
|
|
|
[metadata]
|
|
|
|
name = WSME
|
|
|
|
|
|
|
|
author = "Christophe de Vienne"
|
|
|
|
author-email = "python-wsme@googlegroups.com"
|
|
|
|
|
2013-02-08 16:35:27 +01:00
|
|
|
summary = Simplify the writing of REST APIs, and extend them with additional protocols.
|
2012-09-17 23:03:19 +02:00
|
|
|
|
|
|
|
description-file = README.rst
|
|
|
|
|
2015-10-19 14:51:33 +05:30
|
|
|
url = https://github.com/openstack/wsme
|
2012-09-17 23:03:19 +02:00
|
|
|
|
|
|
|
license = MIT
|
|
|
|
|
|
|
|
classifier =
|
|
|
|
Development Status :: 3 - Alpha
|
|
|
|
Operating System :: OS Independent
|
|
|
|
Programming Language :: Python
|
|
|
|
Programming Language :: Python :: 2.7
|
2015-04-22 17:46:25 +01:00
|
|
|
Programming Language :: Python :: 3.4
|
2012-09-17 23:03:19 +02:00
|
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
|
|
Programming Language :: Python :: Implementation :: PyPy
|
|
|
|
License :: OSI Approved :: MIT License
|
|
|
|
Topic :: Internet :: WWW/HTTP :: WSGI
|
|
|
|
Topic :: Software Development :: Libraries :: Python Modules
|
|
|
|
|
|
|
|
[entry_points]
|
|
|
|
wsme.protocols =
|
2012-11-07 18:19:11 +01:00
|
|
|
rest = wsme.rest.protocol:RestProtocol
|
|
|
|
restjson = wsme.rest.protocol:RestProtocol
|
|
|
|
restxml = wsme.rest.protocol:RestProtocol
|
2015-04-21 20:58:59 +01:00
|
|
|
soap = wsmeext.soap:SoapProtocol
|
2013-01-25 22:56:13 +01:00
|
|
|
extdirect = wsmeext.extdirect:ExtDirectProtocol
|
2012-09-17 23:03:19 +02:00
|
|
|
|
|
|
|
[files]
|
|
|
|
packages =
|
|
|
|
wsme
|
2013-01-17 13:15:25 +01:00
|
|
|
wsmeext
|
|
|
|
|
|
|
|
namespace_packages =
|
|
|
|
wsmeext
|
2012-09-17 23:03:19 +02:00
|
|
|
|
|
|
|
extra_files =
|
|
|
|
setup.py
|
|
|
|
README.rst
|
2014-11-20 10:03:09 -05:00
|
|
|
tests
|
2013-11-19 10:40:42 +01:00
|
|
|
|
|
|
|
[wheel]
|
2014-11-19 10:18:21 -05:00
|
|
|
# WSME has different requirements depending on the version of Python
|
|
|
|
# being used, so we cannot build universal wheels.
|
|
|
|
universal = 0
|