summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 18abc1003256a50c899c52c45af4651364e9486e (plain)
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "wsgitools"
description = "a set of tools working with WSGI (see PEP 333)"
readme = "README"
license = {file = "LICENSE"}
authors = [{name="Helmut Grohne", email="helmut@subdivi.de"}]
maintainers = [{name="Helmut Grohne", email="helmut@subdivi.de"}]
keywords = ["wsgi", "pep333", "scgi"]
urls=[{homepage="http://subdivi.de/~helmut/wsgitools/"}]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Environment :: No Input/Output (Daemon)",
    "Environment :: Web Environment",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: GNU General Public License (GPL)",
    "Natural Language :: English",
    "Programming Language :: Python",
    "Topic :: Internet :: WWW/HTTP",
    "Topic :: Internet :: WWW/HTTP :: WSGI",
    "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
    "Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
    "Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
]
requires-python = ">=2.7"
version="0.3.1"

[tool.pylint]
max-line-length = 80
disable = [
    "C0209", # Py2.x support
    "R0205", # Py2.x support
    "W0707", # Py2.x support
]