-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (44 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
54 lines (44 loc) · 1.01 KB
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
[tool.poetry]
name = "foxops-client"
version = "0.0.0"
description = "Foxops API Client"
authors = [
"Alexander Hungenberg <alexander.hungenberg@roche.com>",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.14,<4.0"
httpx = "^0.28.1"
tenacity = "^9.1.4"
structlog = "^25.5.0"
[tool.poetry.group.dev.dependencies]
# Linting
black = "^26.1.0"
flake8 = "^7.3.0"
flake8-bugbear = "^25.11.29"
isort = "^5.12.0"
# Testing
pytest = "^9.0.2"
pytest-asyncio = "^0.21.1"
pytest-cov = "^4.0.0"
pytest-docker-tools = "^3.1.3"
pytest-mock = "^3.10.0"
# Typing
mypy = "^1.19.1"
GitPython = "^3.1.29"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[[tool.mypy.overrides]]
module = "pytest_docker_tools"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=2.1.1", "wheel", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"