forked from samholt/DeepGenerativeSymbolicRegression
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 loc) · 823 Bytes
/
pyproject.toml
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=46.1.0"]
[tool.bandit]
exclude_dirs = ["tests", "libs"]
[tool.black]
extend-exclude = """
^/libs
"""
include = '\.pyi?$'
line-length = 120
target-version = ['py38', 'py39', 'py310']
[tool.isort]
extend_skip_glob = "libs"
known_first_party = """
config,
datasets,
exp_main,
run_pretrain,
run_recovery_multi,
test,
unit_test,
models,
process_results,
test,
utils
"""
profile = "black"
src_paths = ["datasets,models,process_results,test,utils"]
[tool.pylint]
disable = """
R,
C,
fixme,
unused-argument,
protected-access,
attribute-defined-outside-init,
import-error,
redefined-outer-name,
logging-format-interpolation,
unspecified-encoding,
logging-fstring-interpolation
"""
generated-members = "torch.*"
# ignored-modules = "scipy.special"