-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (55 loc) · 1.31 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
65
[tool.poetry]
name = "horao"
version = "2024.1.1"
description = "HORAO - management engine for hybrid multi-cloud environments"
readme = "README.md"
authors = ["Pim Witlox <[email protected]>"]
license = "LICENSE"
[tool.poetry.dependencies]
python = "^3.11"
uvicorn = "^0.32.0"
uvicorn-worker = "^0.2.0"
gunicorn = "^23.0.0"
networkx = "^3.4.2"
starlette = "^0.41.0"
pyjwt = "^2.9.0"
opentelemetry-api = "^1.27.0"
opentelemetry-sdk = "^1.27.0"
opentelemetry-instrumentation-logging = "^0.48b0"
opentelemetry-instrumentation-starlette = "^0.48b0"
opentelemetry-exporter-otlp = "^1.27.0"
redis = "^5.1.1"
authlib = "^1.3.2"
apiman = "^0.5.4"
[tool.poetry.scripts]
horao = 'horao.main:main'
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
flake8 = "^7.1.1"
isort = "^5.13.2"
mypy = "^1.12.1"
pylint = "^3.3.1"
pre-commit = "^4.0.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.23.8"
httpx = "^0.27.2"
pytest_httpserver = "^1.1.0"
[tool.poetry.group.test]
optional = true
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "--cov --cov-report xml"
[tool.coverage.run]
omit = [
"*/tests/*",
"*/__main__.py",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"