-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (42 loc) · 1.09 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
[tool.ruff]
preview = true
line-length = 120
fix = true
output-format = "grouped"
[tool.ruff.format]
exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ]
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = false
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true
[tool.hatch.build.targets.wheel]
packages = [ "app" ]
[tool.uv]
dev-dependencies = [ "ipdb>=0.13.13", "ipython>=8.18.1" ]
[project]
name = "must-gather-explorer"
version = "0.1.3"
description = "Tool to explore must-gather data"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"click>=8.1.7",
"pyhelper-utils>=0.0.42",
"pyyaml>=6.0.2",
"rich>=13.9.2"
]
[[project.authors]]
name = "Jenia Peimer"
email = "[email protected]"
[project.license]
text = "Apache-2.0 license"
[project.scripts]
must-gather-explorer = "app.main:main"
must-gather-explorer-update-aliases = "app.resource_aliases:fill_api_resources_aliases"
[build-system]
requires = [ "hatchling" ]
build-backend = "hatchling.build"