From 5611a930e129d165a0f1004d974230c53cf5ea63 Mon Sep 17 00:00:00 2001 From: Rick Date: Wed, 14 Oct 2020 22:07:41 +0200 Subject: [PATCH] Add requirements.txt --- README.md | 5 ++--- requirements.txt | 1 + 2 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index ecbfdf7..e4f2d74 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ Converts Juniper Networks configurations to a series of set commands Parser in PHP by Tim Price, rewrite in Python with enhancements by rick@gnous.eu -Use `cli.py` to parse a Juniper configuration file to a series of set commands. -Use `gui.cly` to enter a text. +First, install PyQt with `pip3 install -r requirements.txt`. You can juste type `python3 gui.py` to open the program and enter text ! -Requirements : PyQt +If you want parse a file, use `python3 cli.py -f file`. diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..65050c9 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +PyQt5==5.10.1