[334319]: / pyproject.toml

Download this file

32 lines (27 with data), 486 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
[metadata]
name = "mDeepFRI"
version = "1.1.1"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "numpy", "cython", "requests"]
[tool.ruff]
line-length = 120
[tool.yapf]
based_on_style = "yapf"
spaces_before_comment = 4
split_before_logical_operator = true
column_limit = 120
parallel = true
indent_width = 4
in_place = true
exclude = [
"tests/",
"docs/",
"*.faa",
"*.pdb"
]
[tool.mypy]
exclude = [
"tests/",
"docs/"
]