forked from pykale/pykale
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
28 lines (23 loc) · 787 Bytes
/
setup.cfg
File metadata and controls
28 lines (23 loc) · 787 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
[bdist_wheel]
universal=1
# [pep8]
# max-line-length = 120
[flake8]
max-line-length = 120
exclude = build,examples
ignore =
E203 # whitespace before ':'. Opposite convention enforced by black
E501 # line too long. Long-line code is reformated by black; remaining long lines in docstrings are OK
W503 # line break before binary operator. W503 is incompatible with PEP 8, don't use it
[mypy]
# Suppress all missing import errors for all libraries
ignore_missing_imports = True
[build_sphinx]
all-files = 1
source-dir = docs/source
build-dir = docs/build
warning-is-error = 1
[metadata]
# This includes the license file(s) in the wheel.
# https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
license_files = LICENSE