forked from trallnag/prometheus-fastapi-instrumentator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 882 Bytes
/
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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "prometheus-fastapi-instrumentator"
version = "5.7.1"
description = "Instrument your FastAPI with Prometheus metrics"
authors = ["Tim Schwenke <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/trallnag/prometheus-fastapi-instrumentator"
keywords = ["prometheus", "instrumentation", "fastapi", "exporter", "metrics"]
[tool.poetry.dependencies]
python = ">=3.6.2, <4.0.0"
fastapi = ">=0.38.1, <1.0.0"
prometheus-client = ">=0.8.0, <1.0.0"
[tool.poetry.dev-dependencies]
black = "^21.5b1"
flake8 = "^3.9.2"
requests = "^2.25.1"
pdoc3 = "^0.9.2"
pytest = "^6.2.4"
pytest-cov = "^2.12.0"
rope = "^0.19.0"
isort = "^5.8.0"
mypy = "^0.812"
devtools = "^0.6.1"
[tool.black]
line-length = 90
exclude = "(requirements.txt)"