42 lines
751 B
TOML
42 lines
751 B
TOML
[build-system]
|
|
requires = ["flit_core >=3.2,<4"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[project]
|
|
name = "prometheus_rus"
|
|
version = "0.2.0"
|
|
authors = [
|
|
{name = "Stefan Bühler", email = "stefan.buehler@tik.uni-stuttgart.de"},
|
|
]
|
|
description = "Library to build prometheus metric collection."
|
|
license = {file = "LICENSE"}
|
|
classifiers = [
|
|
"Private :: Do Not Upload",
|
|
"License :: OSI Approved :: MIT License",
|
|
]
|
|
|
|
requires-python = "~=3.11"
|
|
dependencies = []
|
|
|
|
[project.urls]
|
|
Home = "https://github.tik.uni-stuttgart.de/NKS/python-prometheus/"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"flake8",
|
|
"mypy",
|
|
]
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
|
|
[tool.mypy]
|
|
mypy_path = "src"
|
|
files = "src"
|
|
|
|
[tool.pyright]
|
|
include = ["src"]
|
|
|
|
[tool.isort]
|
|
profile = "black"
|