-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (64 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
77 lines (64 loc) · 1.48 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "stack-depth-analyzer"
version = "0.2.5"
authors = [{ name = "Paweł Kubrak", email = "peku33@gmail.com" }]
requires-python = "~3.13"
dynamic = ["dependencies"]
[project.scripts]
stack-depth-analyzer = "app.__main__:app"
[tool.poetry]
packages = [{ include = "app", from = "." }]
[tool.poetry.dependencies]
more-itertools = "^10.7.0"
pydantic = "^2.12.5"
pyelftools = "^0.32"
rich = "^14.1.0"
typer = "^0.24.0"
[tool.poetry.group.dev.dependencies]
black = "^26.0.0"
flake8 = "^7.0.0"
isort = "^8.0.0"
mypy = "^1.17.1"
pylint = "^4.0.0"
[tool.black]
line-length = 120
target-version = ["py313"]
[tool.isort]
profile = "black"
line_length = 120
[tool.mypy]
python_version = "3.13"
strict = true
[tool.pylint.main]
load-plugins = """
pylint.extensions.typing,
"""
[tool.pylint.format]
max-line-length = "120"
[tool.pylint.miscellaneous]
notes = ["FIXME"]
[tool.pylint.message_control]
enable = "all"
disable = """
duplicate-code,
invalid-name,
locally-disabled,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
no-else-raise,
no-else-return,
suppressed-message,
too-few-public-methods,
too-many-branches,
too-many-lines,
too-many-locals,
too-many-return-statements,
too-many-statements,
unidiomatic-typecheck,
unsubscriptable-object,
use-implicit-booleaness-not-comparison-to-zero,
"""
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"