-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (48 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
60 lines (48 loc) · 1.12 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
[project]
name = "skeletonpy"
version = "1.0.0"
readme = "README.md"
dependencies = [
"jedi",
"pathspec",
]
[project.urls]
Homepage = "https://github.com/Premik/skeletonpy"
Repository = "https://github.com/Premik/skeletonpy"
Issues = "https://github.com/Premik/skeletonpy/issues"
[project.scripts]
skeletonpy = "app:main"
[project.optional-dependencies]
dev = [
"pytest",
"black",
"isort",
"ruff",
"mypy",
]
[tool.pytest.ini_options]
pythonpath = ["src", "tests"]
log_cli = true
log_cli_level = "DEBUG"
#log_cli_format = "%(asctime)s [%(levelname)8xs] %(message)s (%(filename)s:%(lineno)s)"
#log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.black]
line-length = 160
skip-string-normalization = true
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
line_length = 160
[tool.ruff]
line-length = 160
ignore = ["E741", "E722", "E731"]
[tool.mypy]
strict_optional = false
disallow_untyped_calls = true
warn_unused_configs = true
# disallow_untyped_defs = true
check_untyped_defs = true
pretty = true
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = ["app", "parsing", "overview", "sources"]