From ae734301ffc7a12347c8e357fe88da87665d9242 Mon Sep 17 00:00:00 2001 From: dandr Date: Fri, 20 May 2022 10:20:46 +0300 Subject: [PATCH] Add lncc.py package requirements file --- README.md | 11 +++++++++++ requirements.txt | 5 +++++ 2 files changed, 16 insertions(+) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 33aa5b3..964781e 100644 --- a/README.md +++ b/README.md @@ -282,6 +282,17 @@ NETCONF operation completed: 2 NEs, stored in 'close-session' ``` +### Dependencies +* [Python 3](http://python.org) +* [Python 3 packages](https://forge.etsi.org/rep/sdn/mwt/mwt-sdn-plugtests-4-materials/-/tree/main/requirements.txt) + +Sometimes the underlying package requirements may change for `lncc.py`. +If you run it from scratch, you can manually update these +requirements by executing something like: +``` + pip3 install --upgrade -r requirements.txt +``` + ## License The content of the present repository is released under the BSD-3 Clause license. diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..7535535 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +ncclient >= v0.6.1 +pandas >= v1.4.2 +cmd2 >= v2.4.1 +openpyxl >= v3.0.10 + -- GitLab