File: setup.cfg

package info (click to toggle)
python-wsme 0.12.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 616 kB
  • sloc: python: 6,064; makefile: 27; javascript: 8
file content (35 lines) | stat: -rw-r--r-- 942 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[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.8
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