wsme/setup.cfg
Stephen Finucane 79b5f18319 setup: Update classifiers
We don't support Python 3.5 any more but to be honest this whole thing
is unnecessary now that we've 'python_requires'.

Change-Id: I27d455d6379f059ed0476360c7f32a776ecf7d2b
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
2023-09-05 11:29:58 +01:00

36 lines
943 B
INI

[metadata]
name = WSME
summary = Simplify the writing of REST APIs, and extend them with additional protocols.
author = Christophe de Vienne
author_email = python-wsme@googlegroups.com
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 :: Only
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