forked from dkruchinin/sanic-prometheus
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
43 lines (34 loc) · 1.2 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
[tool.poetry]
name = "prometheus-sanic"
version = "3.0.0"
description = "Exposes Prometheus monitoring metrics of Sanic apps."
authors = ["Dan Kruchinin <[email protected]>", "skar404 <[email protected]>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/skar404/prometheus-sanic"
keywords = ["python", "prometheus", "sanic", "monitoring", "python-library"]
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Web Environment",
"Topic :: System :: Monitoring",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
sanic = ">=22.0.0"
prometheus-client = "^0.7.1"
[tool.poetry.dev-dependencies]
flake8 = "^3.3.0"
coverage = "^4.5"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"