-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
38 lines (33 loc) · 884 Bytes
/
setup.cfg
File metadata and controls
38 lines (33 loc) · 884 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
# This script contains additional configurations (beyond 'pyproject.toml').
#
# This is necessary for packages that do not support .toml file configuration.
#
# Note: Use of setup.cfg is not recommended except for very simple use cases:
# https://docs.pytest.org/en/7.1.x/reference/customize.html
# -- Linting configuration ---------------------------------------------------
# Reference:
# https://flake8.pycqa.org/en/latest/user/configuration.html
# To run flake8 on your pkg:
#
# (any_repo_dir) $ flake8
#
# To run flake8 on a subpkg/module:
#
# (any_repo_dir) $ flake8 {relative_path}/{module}.py
#
# E.g.:
#
# $ flake8 . --ignore=E266,E303,E305,E501,F401
#
[flake8]
# ideal: 81px
max-line-length = 120
statistics = True
count = true
ignore =
# too many leading '#' for block comment
E266
# imported but not used
F401
exclude =
src/datopy/archive/*,