aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--pyproject.toml4
2 files changed, 5 insertions, 3 deletions
diff --git a/README.md b/README.md
index 9194029..0fd3f86 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
# tunneltop
-A tunnel manager in the familiar top style with ncurses and asyncio.
+A tunnel manager in the familiar top style written with ncurses and asyncio.
![Image](tunneltop.png)
@@ -73,4 +73,6 @@ How long before the test is considered to have timed out.</br>
`r` restarts a tunnel.</br>
+To quit send a `SIGINT` or a `SIGTERM`. I'm working on improving this of course.</br>
+
tunneltop will reload its config file upon receiving a `SIGHUP` and apply the changes immediately if there are any.</br>
diff --git a/pyproject.toml b/pyproject.toml
index 851b3cb..d6f5113 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tunneltop"
-version = "0.1.0"
+version = "0.1.1"
description = "A top-like tunnel manager"
authors = ["terminaldwelelr <devi@terminaldweller.com>"]
license = "GPL-3.0"
@@ -19,7 +19,7 @@ packages = [
]
[tool.poetry.scripts]
-tunneltop = "tunneltop:main"
+tunneltop = "tunneltop.tunneltop:main"
[tool.poetry.dependencies]
python = "^3.11"