ac07b56336
This is now a Python 3-only package. We must temporarily cap Sphinx at 3.x or lower to get the build passing, but this can be addressed in a follow-up shortly. Change-Id: I1923d1dcd92cce349211dee5b01a3c365b151ead Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
42 lines
1.2 KiB
INI
42 lines
1.2 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://opendev.org/x/wsme
|
|
license = MIT
|
|
python_requires = >=3.6
|
|
classifier =
|
|
Development Status :: 3 - Alpha
|
|
Operating System :: OS Independent
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.5
|
|
Programming Language :: Python :: 3.6
|
|
Programming Language :: Python :: 3.7
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3.9
|
|
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
|
|
|
|
[files]
|
|
packages =
|
|
wsme
|
|
wsmeext
|
|
namespace_packages =
|
|
wsmeext
|
|
extra_files =
|
|
setup.py
|
|
README.rst
|
|
tests
|