From 32720c937b6a70137004838fb9b119eb596e30e2 Mon Sep 17 00:00:00 2001 From: "Rune B. Broberg" Date: Wed, 4 Sep 2019 20:34:02 +0200 Subject: [PATCH] Small script to start the program as usual after changes to structure. v0.0.5 --- nanovna-saver.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 nanovna-saver.py diff --git a/nanovna-saver.py b/nanovna-saver.py new file mode 100644 index 0000000..62c4930 --- /dev/null +++ b/nanovna-saver.py @@ -0,0 +1,20 @@ +# NanoVNASaver - a python program to view and export Touchstone data from a NanoVNA +# Copyright (C) 2019. Rune B. Broberg +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +from NanoVNASaver.__main__ import main + +if __name__ == '__main__': + main() \ No newline at end of file