-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
62 lines (51 loc) · 1.36 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = [
"setuptools >= 61.0.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "fact_helper_file"
version = "0.2.16"
authors = [
{name = "Johannes vom Dorp"}
]
license = {file = "LICENSE"}
urls = {homepage = "https://github.com/fkie-cad/fact_helper_file"}
dependencies = [
"python-magic",
]
requires-python = ">=3.7"
[tool.setuptools.packages.find]
where = ["."]
include = ["fact_helper_file"]
exclude = ["test"]
[tool.setuptools.package-data]
mypkg = ["*.mgc"]
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ["py37"]
[tool.pylint.main]
init-hook = 'import sys; sys.path.append("./src")'
load-plugins = ["pylint.extensions.bad_builtin", "pylint.extensions.mccabe"]
jobs = 0
include-naming-hint = true
good-names = ["i", "j", "k", "Run", "_", "db", "ex", "fd", "fo", "fp", "fw", "pw", "rv", "sc", "tc"]
[tool.pylint."messages control"]
confidence = []
disable = ["missing-docstring" , "locally-disabled", "logging-format-interpolation", "logging-fstring-interpolation"]
[tool.pylint.reports]
output-format = "colorized"
msg-template="{path}:{line}: [{symbol}:{obj}] {msg}"
[tool.pylint.format]
max-line-length = 120
[tool.pylint.design]
max-args=7
max-complexity = 7
min-public-methods = 0
max-public-methods = 40
[tool.isort]
line_length=120
default_section = "THIRDPARTY"
profile = "black"