28 lines
491 B
TOML
28 lines
491 B
TOML
[project]
|
|
name = "autossh-mgr"
|
|
version = "0.1.0"
|
|
description = "CLI tool to manage autossh reverse SSH tunnels"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"click>=8.1",
|
|
"pyyaml>=6.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
autossh-mgr = "autossh_mgr.cli:cli"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/autossh_mgr"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.3",
|
|
]
|