From b19e80cba7620c576343224bd6d4fc90b53339e8 Mon Sep 17 00:00:00 2001 From: Alligitor <8754766+alligitor@users.noreply.github.com> Date: Sun, 20 Apr 2025 14:31:13 +0000 Subject: [PATCH] Updated for -U. Added urwid as an install dependency. --- README.md | 2 ++ setup.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d39d42a..02b1088 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ usage: loramon [-h] [-C] [-W directory] [--freq Hz] [--bw Hz] [--txp dBm] [--duration seconds] [-Q] [-R] [-P] + [-U] [port] LoRa packet sniffer for RNode hardware. @@ -30,6 +31,7 @@ optional arguments: -Q Quite mode. Don't log any messages after start up -R Print out raw bytes of the frame -P Set promiscuous mode + -U Use a text based UI ``` ## Installation diff --git a/setup.py b/setup.py index e173c5a..f7264d7 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="loramon", - version="0.9.7", + version="0.9.8", author="Mark Qvist", author_email="mark@unsigned.io", description="LoRa packet sniffer for RNode hardware", @@ -21,6 +21,6 @@ setuptools.setup( entry_points= { 'console_scripts': ['loramon=loramon:main'] }, - install_requires=['pyserial'], + install_requires=['pyserial', 'urwid'], python_requires='>=3.6', ) \ No newline at end of file