5783b2c17d
- relink README/CHANGELOG/pyproject to git.engelgardt23.ru; drop github build badge - update-check + clone URL point to Gitea; rename GITHUB_REPO -> REPO - port CI to .gitea/workflows (self-contained, publishes Gitea release) - remove .github (workflow + issue templates)
27 lines
748 B
TOML
27 lines
748 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "vrcx"
|
|
description = "Vegman Remote Collect (extended) — diagnostic log collector for YADRO Vegman servers (BMC + SDS host)."
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = { text = "MIT" }
|
|
authors = [{ name = "engelgardt" }]
|
|
dependencies = ["rich>=13", "paramiko>=3"]
|
|
dynamic = ["version"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.engelgardt23.ru/engel/vrcx"
|
|
Issues = "https://git.engelgardt23.ru/engel/vrcx/issues"
|
|
|
|
[project.scripts]
|
|
vrcx = "vrcx.app:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = { attr = "vrcx.__version__" }
|