-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
64 lines (55 loc) · 1.85 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
[tool.poetry]
name = "runner-manager"
version = "1.0.0"
description = ""
authors = ["Platform Engineering <[email protected]>"]
license = "Apache"
readme = "README.md"
packages = [{ include = "runner_manager" }]
include = ["pyproject.toml", "README.md", "LICENSE", "images/**/*"]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.115.0"
uvicorn = { extras = ["standard"], version = "^0.31.0" }
pydantic = ">=1.10.2,<2.0"
redis-om = "^0.3.1"
rq = "^1.16.2"
pyyaml = "^6.0.2"
redis = "^5.1.1"
docker = "^7.1.0"
google-cloud-compute = "^1.19.2"
boto3 = "^1.34.162"
botocore = "^1.34.162"
boto3-stubs = { extras = ["ec2"], version = "^1.35.35" }
githubkit = { extras = ["auth-app"], version = "^0.11.8" }
rq-scheduler = "^0.13.1"
openstacksdk = "^4.0.0"
pyvmomi = "^8.0.3.0.1"
vapi-runtime = { url = "https://raw.githubusercontent.com/vmware/vsphere-automation-sdk-python/v8.0.1.0/lib/vapi-runtime/vapi_runtime-2.40.0-py2.py3-none-any.whl" }
vcenter-bindings = { url = "https://raw.githubusercontent.com/vmware/vsphere-automation-sdk-python/v8.0.1.0/lib/vcenter-bindings/vcenter_bindings-4.1.0-py2.py3-none-any.whl" }
prometheus-client = "^0.21.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.39"
mkdocs = "^1.6.1"
[tool.poetry.group.dev.dependencies]
connexion = "^3.1.0"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
hypothesis = "^6.112.4"
pyright = "^1.1.383"
black = "^24.10.0"
isort = "^5.13.2"
ruff = "^0.6.9"
yamllint = "^1.35.1"
types-redis = "^4.6.0.20241004"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--disable-warnings --cov=runner_manager --cov-report=xml --junitxml=.reports/junit.xml"
# Add poetry scripts
[tool.poetry.scripts]
runner-manager = "runner_manager.main:main"
scheduler = "runner_manager.scripts.scheduler:main"