-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (49 loc) · 1.1 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
[tool.poetry]
name = "terraform-vault-backend"
version = "0.3.0"
description = "A Vault backend for Terraform implemented as an HTTP server."
authors = ["emanueljg <[email protected]>"]
readme = "README.md"
packages = [ {include = "src"}]
[tool.poetry.dependencies]
python = ">=3.9,<4"
fastapi = ">=0.115.6,<0.116.0"
hvac = ">=2.3.0,<2.4.0"
uvicorn = ">=0.34.0,<0.35.0"
[tool.poetry.group.dev.dependencies]
ruff = ">=0.8.5,<0.9.0"
mypy = ">=1.14.1,<1.15.0"
pytest = ">=8.3.4,<8.4.0"
[tool.ruff]
line-length = 100
fix = true
exclude = ['stubs']
[tool.ruff.lint]
select = [ "ALL" ]
ignore = [
"COM812",
"ISC001",
"D203",
"D213",
"D104",
"D107",
"ANN401",
"FIX002",
"TD004",
"TD002",
"TD003",
"FBT001",
"ERA001",
"PGH003",
"RET504",
"D301"
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = [ "S101" ]
[tool.ruff.lint.flake8-annotations]
# https://docs.astral.sh/ruff/rules/missing-return-type-special-method/
mypy-init-return = true
# "D203", "D212", "S101", "EXE002", "D1", "B008" ]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"