-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
41 lines (35 loc) · 861 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
[tool:pytest]
addopts = -x -s -v
norecursedirs = .git src .tox venv .venv
[flake8]
exclude = .git,__pycache__,legacy,build,dist,.tox,venv,.venv,docs,.ipynb_checkpoints
max-line-length = 99
max-complexity = 16
application-import-names=tensorpandas,tests
ignore =
E203 # E203 whitespace before ':' (esp. in slices)
W503 # W503 line break before binary operator
F811 # F811 redefinition of unused ...
[mypy]
warn_incomplete_stub = False
incremental = True
check_untyped_defs = False
ignore_missing_imports = True
[pydocstyle]
add_ignore = D100,D101,D102,D103,D104,D105,D107,D200,D202
match_dir = (?!(legacy|tmp|docs|ja_docs|tests|venv|\.)).*
[coverage:run]
omit =
tests/*
src/*
setup.py
.tox/*
dist/*
**/__init__.py
venv/*
[bdist_wheel]
universal = 1
[zest.releaser]
create-wheel = yes
release = yes
register = yes