-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.cfg
112 lines (100 loc) · 2.36 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
110
111
112
# SPDX-License-Identifier: MIT
[metadata]
name = tox-lsr
version = attr: tox_lsr.version.__version__
url = https://github.com/linux-system-roles/tox-lsr
project_urls =
Bug Reports = https://github.com/linux-system-roles/tox-lsr/issues
Source = https://github.com/linux-system-roles/tox-lsr
author = Linux System Roles Team
author_email = [email protected]
classifiers =
Development Status :: 1 - Planning
Environment :: Console
Environment :: Plugins
Framework :: tox
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Software Development :: Testing
license = MIT
license_file = LICENSE
description = A tox plugin for testing Linux system roles
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
plugin
tox
testing
platforms =
linux
[options]
zip_safe = False
setup_requires =
setuptools >=40.9.0
install_requires =
tox
python_requires = >=2.6, <4
#include_package_data = True
packages = find:
package_dir =
= src
[options.extras_require]
dev =
check-manifest
test =
coverage
[options.entry_points]
tox =
lsr = tox_lsr.hooks
[options.packages.find]
where = src
[bdist_wheel]
universal = True
[check]
metadata = True
strict = True
[sdist]
formats = zip, gztar
[coverage:report]
exclude_lines =
\# pragma: no cover
^if TYPE_CHECKING:$
[flake8]
filename = *.py,*.pyi
ignore = E302,E704,H216,H301,H304,H306,H404,H405,W503
select = E,F,W,C,G,H
enable-extensions = G,H
max-line-length = 79
max-doc-length = 79
show-source = True
statistics = True
doctests = True
max-complexity = 15
exclude = .git,.tox,.github,__pycache__
[mypy]
mypy_path = stubs
exclude = /test_scripts/
disallow_any_expr = True
disallow_any_decorated = True
disallow_any_explicit = True
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_return_any = True
warn_unreachable = True
strict_equality = True
warn_incomplete_stub = True
warn_unused_configs = True
[pydocstyle]
match = .*\.py[i]?
ignore = D202