-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 737 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 737 Bytes
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
[tool.poetry]
name = "swagger-operator"
version = "0.2.0"
description = ""
authors = ["Luiz Oliveira", "Gustavo Coelho"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.32.3"
kopf = "^1.37.5"
asyncio = "^3.4.3"
fastapi = {extras = ["standard"], version = "^0.115.12"}
authlib = "^1.5.2"
itsdangerous = "^2.2.0"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
pytest = "^8.3.5"
pytest-asyncio = "^0.26.0"
pytest-cov = "^6.1.1"
httpx = "^0.28.1"
bandit = "^1.8.3"
ruff = "^0.11.10"
pre-commit = "^4.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.bandit]
exclude_dirs = ["tests", ".git", ".venv", ".github"]
skips = ["B101", "B113"]