26 lines
744 B
TOML
26 lines
744 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://github.com/Engelgardt23/vrcx"
|
|
Issues = "https://github.com/Engelgardt23/vrcx/issues"
|
|
|
|
[project.scripts]
|
|
vrcx = "vrcx.app:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = { attr = "vrcx.__version__" }
|