wsme/setup.cfg
Doug Hellmann dd8a9e6374 Disable universal wheels
We can't build universal wheels of WSME because they end up with the
wrong dependency list, which ends up causing WSME to try to install
ipaddr under python 3 where it is (a) not needed and (b) can't be
installed because of a syntax error.

Change-Id: Ia7f6cb4cad9bb8cb58a6004ab2a394584e2e9efd
2014-11-19 10:21:23 -05:00

53 lines
1.4 KiB
INI

[metadata]
name = WSME
author = "Christophe de Vienne"
author-email = "python-wsme@googlegroups.com"
summary = Simplify the writing of REST APIs, and extend them with additional protocols.
description-file = README.rst
url = https://github.com/stackforge/wsme
license = MIT
classifier =
Development Status :: 3 - Alpha
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3
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 =
rest = wsme.rest.protocol:RestProtocol
restjson = wsme.rest.protocol:RestProtocol
restxml = wsme.rest.protocol:RestProtocol
soap = wsmeext.soap:SoapProtocol
extdirect = wsmeext.extdirect:ExtDirectProtocol
[files]
packages =
wsme
wsmeext
namespace_packages =
wsmeext
extra_files =
setup.py
README.rst
[wheel]
# WSME has different requirements depending on the version of Python
# being used, so we cannot build universal wheels.
universal = 0