forked from pytorch/ignite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
31 lines (27 loc) · 769 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
[metadata]
license_file = LICENSE
[pycodestyle]
exclude = .eggs,*.egg,build,docs/*,.git,versioneer.py,*/conf.py
ignore = E402, E721
max_line_length = 120
[isort]
known_third_party=clearml,dill,matplotlib,numpy,pkg_resources,pytest,requests,setuptools,skimage,sklearn,torch,torchvision
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=120
skip_glob=docs/**
filter_files=True
profile=black
[flake8]
max-line-length = 120
ignore = E722,E203,E231,F841,W503,F403,E402
per-file-ignores = __init__.py: F401
[tool:pytest]
markers =
distributed: mark a test with distributed option
multinode_distributed: mark a test with multi-node distributed option
tpu: mark a test as requiring XLA
addopts =
--color=yes