-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 817 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 817 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
36
[tool.poetry]
name = "gh-actions-exporter"
version = "0.1.0"
description = ""
license = "Apache-2.0"
authors = ["Release Engineering <release.engineering@scality.com>"]
[tool.poetry.scripts]
start = "gh_actions_exporter.main:start"
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.115.6"
prometheus-client = "^0.21.0"
uvicorn = { extras = ["standard"], version = "^0.34.0" }
python-multipart = "^0.0.19"
PyYAML = "^6.0"
githubkit = "^0.10.3"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.49"
mkdocs-multirepo-plugin = "^0.8.3"
[tool.poetry.dev-dependencies]
pytest = "^7.4.4"
flake8 = "^7.1.1"
requests = "^2.32.3"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"