-
Notifications
You must be signed in to change notification settings - Fork 91
/
pyproject.toml
54 lines (48 loc) · 1007 Bytes
/
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
[tool.poetry]
name = "hardeneks"
version = "0.10.4"
description = ""
authors = ["Doruk Ozturk <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
typer = {extras = ["all"], version = "^0.6.1"}
kubernetes = "^25.3.0"
boto3 = "^1.26.2"
pre-commit = "^2.20.0"
tox-gh-actions = "^3.0.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pytest-datadir = "^1.4.1"
tox = "^4.1.2"
[tool.poetry.scripts]
hardeneks = "hardeneks:app"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.11.0"
version_files = [
"pyproject.toml:[tool.commitizen]\nversion",
"pyproject.toml:[tool.poetry]\nname = \"commitizen\"\nversion",
"pyproject.toml:^version"
]
tag_format = "v$version"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"