File: setup.cfg

package info (click to toggle)
python-wsme 0.8.0-2~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 832 kB
  • sloc: python: 9,235; makefile: 140
file content (51 lines) | stat: -rw-r--r-- 1,331 bytes parent folder | download | duplicates (2)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[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.7
        Programming Language :: Python :: 3.4
        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
    tests

[wheel]
# WSME has different requirements depending on the version of Python
# being used, so we cannot build universal wheels.
universal = 0