forked from 418sec/caliban
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (43 loc) · 944 Bytes
/
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
[tool:pytest]
norecursedirs = env
addopts = --doctest-modules -v -s
[pycodestyle]
ignore = E111,E114
[yapf]
based_on_style = google
indent_width = 2
split_before_first_argument = false
# pytest coverage options
[run]
omit =
*/tests/*
*/test_*
*/_version.py
[versioneer]
VCS = git
style = pep440
versionfile_source = caliban/_version.py
versionfile_build = caliban/_version.py
tag_prefix =
[mypy-tqdm.*]
ignore_missing_imports = True
[mypy-absl.*]
ignore_missing_imports = True
[mypy-blessings.*]
ignore_missing_imports = True
[mypy-googleapiclient.*]
ignore_missing_imports = True
[mypy-sqlalchemy.*]
ignore_missing_imports = True
[mypy-kubernetes.*]
ignore_missing_imports = True
[mypy-google.*]
ignore_missing_imports = True
[mypy-urllib3.*]
ignore_missing_imports = True
[mypy-yaspin.*]
ignore_missing_imports = True
[mypy-schema.*]
ignore_missing_imports = True
[mypy-commentjson.*]
ignore_missing_imports = True