-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1.12 KB
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
[tool.poetry]
name = "prometheus-query-builder"
version = "0.1.4"
description = "Package for generation Prometheus Query Language queries."
authors = ["Michail Tsyganov <tsyganov.michail@yandex.ru>"]
homepage = "https://github.com/m-chrome/prometheus-query-builder"
repository = "https://github.com/m-chrome/prometheus-query-builder"
readme = "README.md"
license = "MIT"
keywords = ["prometheus", "promql", "query-builder"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
pytest = "^7.1"
pytest-cov = "^3.0.0"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/m-chrome/prometheus-query-builder/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"