-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
44 lines (38 loc) · 1.2 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
[tool.poetry]
name = "horreum"
version = "0.17.dev"
description = "Horreum python library"
keywords = ["horreum", "performance", "change-detection"]
authors = ["Andrea Lamparelli <[email protected]>"]
maintainers = [
"Andrea Lamparelli <[email protected]>",
"John O'Hara <[email protected]>",
"Stale Pedersen <[email protected]>"
]
license = "Apache 2.0"
readme = "README.md"
homepage = "https://github.com/Hyperfoil/horreum-client-python"
include = [
"src/horreum/raw_client/**/*", # this folder includes auto-generated client
]
[tool.poetry.urls]
"Issues" = "https://github.com/Hyperfoil/horreum-client-python/issues"
[tool.poetry.dependencies]
python = "^3.9"
microsoft-kiota-abstractions = "^1.3.1"
microsoft-kiota-http = "^1.3.1"
microsoft-kiota-serialization-json = "^1.1.0"
microsoft-kiota-serialization-text = "^1.0.0"
python-keycloak = "^3.9.1"
microsoft-kiota-serialization-form = "^0.1.0"
microsoft-kiota-serialization-multipart = "^0.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pytest-asyncio = "^0.23.6"
nox = "^2024.3.2"
nox-poetry = "^1.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"