-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (36 loc) · 1 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "blacksheep-prometheus"
version = "0.1.8"
description = "Prometheus integration for blacksheep"
authors = ["Nikita Tomchik <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Cdayz/blacksheep-prometheus"
repository = "https://github.com/Cdayz/blacksheep-prometheus"
keywords = ["blacksheep", "prometheus", "metrics"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
include = [
"LICENSE",
]
exclude = []
[tool.poetry.dependencies]
python = "^3.7"
prometheus-client = ">=0.11.0"
blacksheep = ">=1.0.7"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-xdist = "^2.5.0"
pytest-cov = "^3.0.0"
tox = "^3.23.1"
isort = "^5.10.1"
flake8 = "^4.0.1"
pytest-asyncio = "^0.16.0"