This repository was archived by the owner on Oct 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.42 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
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.black]
line-length = 128
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
update_changelog_on_bump = true
version = "0.0.4"
version_files = ["Taskfile.yml:TF_VERSION", "VERSION", "pyproject.toml:version"]
[tool.poetry]
authors = ["Justin Lecher <[email protected]>"]
description = "TF provider for Turing PI BMC"
license = "Apache-2.0"
name = "terraform_provider_turing_pi_bmc"
version = "0.0.4"
[tool.poetry.dependencies]
ansible-core = "^2.16.5"
molecule = "^24.2.0"
netaddr = "^1.2.1"
pytest-testinfra = "^10.1.0"
python = "~3.12"
[tool.poetry.extras]
molecule = ["ansible", "docker", "lint"]
pytest-testinfra = ["ansible", "docker", "local"]
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
commitizen = "^3.21.3"
cruft = "^2.15.0"
poetry = "^1.8.2"
pre-commit = "^3.7.0"
pytest = "^8.1.1"
pytest-clarity = "^1.0.1"
pytest-cookies = "^0"
pytest-parallel = "^0"
pytest-xdist = "^3.5.0"
pyyaml = "^6.0.1"
yamllint = "^1.35.1"
[tool.ruff]
exclude = ["obsolete"]
ignore = [
"B008", # do not perform function calls in argument defaults
"C901", # too complex
"E501", # line too long, handled by black
]
line-length = 128
select = [
"B", # flake8-bugbear
# "I", # isort
"C", # flake8-comprehensions
"E", # pycodestyle errors
"F", # pyflakes
"W", # pycodestyle warnings
]
[tool.ruff.per-file-ignores]