From 401d90ed9f087e43d7fa00213d50cffeb99ceef8 Mon Sep 17 00:00:00 2001 From: Christoph Schlosser Date: Sat, 23 Aug 2025 21:20:39 +0200 Subject: g2h: basic program setup --- mise.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 mise.toml (limited to 'mise.toml') diff --git a/mise.toml b/mise.toml new file mode 100644 index 0000000..9358152 --- /dev/null +++ b/mise.toml @@ -0,0 +1,12 @@ +[env] +_.python.venv = { path = ".venv", create = true, python = "3.13.5" } + +[tasks.install] +description = "Install dependencies" +alias = "i" +run = "pip install -r requirements.txt" + +[tasks.run] +description = "Run g2h with the test repo" +alias = "r" +run = "python3 -m g2h.cli" -- cgit v1.2.3