feat: scaffold autossh-mgr project structure
This commit is contained in:
27
pyproject.toml
Normal file
27
pyproject.toml
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
[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",
|
||||||
|
]
|
||||||
0
src/autossh_mgr/__init__.py
Normal file
0
src/autossh_mgr/__init__.py
Normal file
4
src/autossh_mgr/__main__.py
Normal file
4
src/autossh_mgr/__main__.py
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
from autossh_mgr.cli import cli
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
cli()
|
||||||
BIN
src/autossh_mgr/__pycache__/__init__.cpython-314.pyc
Normal file
BIN
src/autossh_mgr/__pycache__/__init__.cpython-314.pyc
Normal file
Binary file not shown.
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
0
tests/integration/__init__.py
Normal file
0
tests/integration/__init__.py
Normal file
0
tests/unit/__init__.py
Normal file
0
tests/unit/__init__.py
Normal file
Reference in New Issue
Block a user