File: setup.cfg

package info (click to toggle)
waitress 3.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 988 kB
  • sloc: python: 10,771; makefile: 84; sh: 25
file content (69 lines) | stat: -rw-r--r-- 1,944 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[metadata]
name = waitress
version = 3.0.2
description = Waitress WSGI server
long_description = file: README.rst, CHANGES.txt
long_description_content_type = text/x-rst
keywords = waitress wsgi server http
license = ZPL 2.1
classifiers =
    Development Status :: 6 - Mature
    Environment :: Web Environment
    Intended Audience :: Developers
    License :: OSI Approved :: Zope Public License
    Programming Language :: Python
    Programming Language :: Python :: 3
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: 3.11
    Programming Language :: Python :: 3.12
    Programming Language :: Python :: 3.13
    Programming Language :: Python :: Implementation :: CPython
    Programming Language :: Python :: Implementation :: PyPy
    Operating System :: OS Independent
    Topic :: Internet :: WWW/HTTP
    Topic :: Internet :: WWW/HTTP :: WSGI
url = https://github.com/Pylons/waitress
project_urls =
    Documentation = https://docs.pylonsproject.org/projects/waitress/en/latest/index.html
    Changelog = https://docs.pylonsproject.org/projects/waitress/en/latest/index.html#change-history
    Issue Tracker = https://github.com/Pylons/waitress/issues

author = Zope Foundation and Contributors
author_email = zope-dev@zope.org
maintainer = Pylons Project
maintainer_email = pylons-discuss@googlegroups.com

[options]
package_dir=
    =src
packages = find:
python_requires = >=3.9.0

[options.entry_points]
paste.server_runner =
    main = waitress:serve_paste
console_scripts =
    waitress-serve = waitress.runner:run

[options.packages.find]
where = src

[options.extras_require]
testing =
    pytest
    pytest-cov
    coverage>=7.6.0

docs =
    Sphinx>=1.8.1
    docutils
    pylons-sphinx-themes>=1.0.9

[tool:pytest]
python_files = test_*.py
# For the benefit of test_wasyncore.py
python_classes = Test*
testpaths =
    tests
addopts = --cov -W always