-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 loc) · 1.01 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
[tool.poetry]
name = "helm-yaml-tui"
version = "0.2.2"
description = "TUI navigator for rendered Helm YAML output with tree navigation and syntax highlighting"
authors = ["Adrian Rumpold <[email protected]>"]
license = "MIT"
packages = [{ include = "helm_yaml_tui", from = "src" }]
[tool.poetry.dependencies]
python = "^3.9"
PyYAML = "^6.0"
textual = "0.5.0"
"ruamel.yaml" = "^0.17.21"
[tool.poetry.group.dev.dependencies]
black = "^22.8.0"
isort = "^5.10.1"
flake8 = "^5.0.4"
bump2version = "^1.0.1"
pytest = "^7.2.0"
pydocstyle = "^6.1.1"
[tool.poetry.scripts]
helm-yaml-tui = "helm_yaml_tui.main:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
# Source https://github.com/psf/black#configuration-format
include = "\\.pyi?$"
line-length = 88
target-version = ["py39"]
# Black-compatible settings for isort
# See https://black.readthedocs.io/en/stable/compatible_configs.html
[tool.isort]
line_length = "88"
profile = "black"
[tool.pytest.ini_options]
testpaths = ["tests"]