summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg72
1 files changed, 62 insertions, 10 deletions
diff --git a/setup.cfg b/setup.cfg
index 81cfbb1..77afa15 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,15 +1,67 @@
-[easy_install]
-zip_ok = false
+[metadata]
+name = waitress
+version = 1.4.4a0
+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 :: 2
+ Programming Language :: Python :: 2.7
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.5
+ Programming Language :: Python :: 3.6
+ Programming Language :: Python :: 3.7
+ 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
+author = Zope Foundation and Contributors
+author_email = zope-dev@zope.org
+maintainer = Pylons Project
+maintainer_email = pylons-discuss@googlegroups.com
-[nosetests]
-match=^test
-nocapture=1
-cover-package=waitress
-cover-erase=1
+[options]
+package_dir=
+ =src
+packages=find:
+python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
+
+[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-cover
+ coverage>=5.0
+
+docs =
+ Sphinx>=1.8.1
+ docutils
+ pylons-sphinx-themes>=1.0.9
[bdist_wheel]
universal = 1
-[aliases]
-dev = develop easy_install waitress[testing]
-docs = develop easy_install waitress[docs]
+[tool:pytest]
+python_files = test_*.py
+# For the benefit of test_wasyncore.py
+python_classes = Test_*
+testpaths =
+ tests
+addopts = -W always --cov --cov-report=term-missing