forked from rpatterson/httpd-echo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
109 lines (83 loc) · 2.16 KB
/
setup.cfg
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[metadata]
name = httpdecho
version = attr: httpdecho.__version__
description = A Simple Python HTTP server that echos the request in the response
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = httpd, http, echo, server
author = Ross Patterson
author_email = [email protected]
maintainer = Doncho N. Gunchev
maintainer_email = [email protected]
url = https://github.com/gunchev/httpd-echo
license = GPL
platforms = any
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License (GPL)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Topic :: Internet :: WWW/HTTP :: HTTP Servers
Topic :: Utilities
[options]
zip_safe = False
python_requires = >= 3.6
py_modules = httpdecho
include_package_data = True
setup_requires =
setuptools>=41.0
tests_require =
requests
coverage
pytest
pytest-cov
pytest-mock
[options.entry_points]
console_scripts =
httpd-echo = httpdecho:main
[bdist_wheel]
universal = true
[options.package_data]
* = *.rst
# python setup.py sdist
[sdist]
# formats = zip,gztar,bztar,xztar
formats = zip,xztar
[coverage:run]
branch = true
concurrency = thread
omit = setup.py
[coverage:report]
# Regexes for lines to exclude from consideration
show_missing = true
skip_covered = false
skip_empty = true
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
return NotImplemented
# Don't complain if non-runnable code isn't run:
if 0:
if False:
if __name__ == .__main__.:
if typing.TYPE_CHECKING:
# Don't complain about abstract methods, they aren't run:
@(abc\.)?abstractmethod
@(abc\.)?abstractproperty
# Multiple library version support
except ImportError
[coverage:html]
directory = htmlcov
[coverage:paths]
source =
./