-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
44 lines (37 loc) · 670 Bytes
/
setup.cfg
File metadata and controls
44 lines (37 loc) · 670 Bytes
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
[isort]
skip =
.tox,
.scratch,
_vendor,
data
multi_line_output = 5
known_third_party =
pip._vendor
known_first_party =
pip
tests
default_section = THIRDPARTY
include_trailing_comma = true
[flake8]
exclude =
.tox,
.scratch,
_vendor,
data
select = E,W,F
ignore = W504
[mypy]
follow_imports = silent
ignore_missing_imports = True
strict_optional = False
[mypy-pip/_internal/req/*]
disallow_untyped_defs = True
[mypy-pip/_vendor/*]
follow_imports = skip
ignore_errors = True
[tool:pytest]
addopts = --ignore src/pip/_vendor --ignore tests/tests_cache -r aR
[bdist_wheel]
universal = 1
[metadata]
license_file = LICENSE.txt