85bcf74e99
pbr looks at the git tag for the version, so we do not want a hard-coded value in the setup.cfg pbr handles dev tagging automatically, so don't do that via setup.cfg pbr recursively finds packages, so we do not need to list them explicitly in setup.cfg Change-Id: I59a3e9d789c97f2cb9b6c487c553127af5a36b9f
48 lines
1.2 KiB
INI
48 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://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
|