rename package (_rus suffix), convert to pyproject.toml, poetry lints

This commit is contained in:
2025-05-08 11:57:26 +02:00
parent 68ca87ee3a
commit a6b6ca9c8f
14 changed files with 260 additions and 49 deletions
+41
View File
@@ -0,0 +1,41 @@
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "prometheus_rus"
version = "0.1.0"
authors = [
{name = "Stefan Bühler", email = "stefan.buehler@tik.uni-stuttgart.de"},
]
license = "Apache Software License 2.0"
classifiers = [
"Private :: Do Not Upload",
"License :: OSI Approved :: Apache Software License",
]
dynamic = ["version", "description"]
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"