enroll/pyproject.toml
Miguel Jacq 9d24ea99e9
Some checks failed
Lint / test (push) Waiting to run
CI / test (push) Successful in 52s
CI / test (almalinux, docker.io/library/almalinux:9, python3.11) (push) Failing after 2m15s
CI / test (debian, docker.io/library/debian:13, python3) (push) Failing after 3m11s
Fix for bookworm build
2026-07-05 11:21:05 +10:00

69 lines
1.7 KiB
TOML

[build-system]
requires = ["poetry-core>=1.4.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "enroll"
version = "0.7.0"
description = "Enroll a server's running state retrospectively into Ansible"
readme = "README.md"
requires-python = ">=3.10"
license = "GPL-3.0-or-later"
authors = [
{ name = "Miguel Jacq", email = "mig@mig5.net" },
]
dependencies = [
"PyYAML>=6,<7",
"paramiko>=3.5",
"jsonschema>=4.23,<5",
]
[project.urls]
Repository = "https://git.mig5.net/mig5/enroll"
[project.scripts]
enroll = "enroll.cli:main"
[tool.poetry]
# Keep this legacy Poetry metadata as a compatibility shim for distro
# build backends such as Debian Bookworm's python3-poetry-core 1.4.x.
# The canonical modern metadata remains in [project] above.
requires-poetry = ">=2.0"
name = "enroll"
version = "0.7.0"
description = "Enroll a server's running state retrospectively into Ansible"
authors = ["Miguel Jacq <mig@mig5.net>"]
readme = "README.md"
license = "GPL-3.0-or-later"
homepage = "https://git.mig5.net/mig5/enroll"
repository = "https://git.mig5.net/mig5/enroll"
packages = [{ include = "enroll" }]
include = [
{ path = "enroll/schema/state.schema.json", format = ["sdist", "wheel"] },
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
PyYAML = ">=6,<7"
paramiko = ">=3.5"
jsonschema = ">=4.23,<5"
[tool.poetry.scripts]
enroll = "enroll.cli:main"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = ">=8,<9"
pytest-cov = ">=5,<6"
[tool.poetry.group.appimage]
optional = true
[tool.poetry.group.appimage.dependencies]
pyproject-appimage = ">=4.2,<5"
[tool.pyproject-appimage]
script = "enroll"
output = "Enroll.AppImage"