From 31774d045f7e59bde8c818b16bddf2161848e418 Mon Sep 17 00:00:00 2001 From: Mauno Erhardt Date: Mon, 28 Jun 2021 18:35:42 +0200 Subject: [PATCH] Added requirements.txt for python modules --- README.md | 4 ++-- requirements.txt | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index e70e477..96150ad 100755 --- a/README.md +++ b/README.md @@ -22,11 +22,11 @@ these plugins were developed / tested on the following models: * [check_cisco_stackmodules.py](docs/check_cisco_stackmodules.md) ### Installing dependencies -* `pip3.6 install argparse itertools pysnmp` +* `pip3.6 install -r requirements.txt` ## Contributing * You're welcome to open pull requests * When contributing code please make sure if follows the [PEP 8](https://www.python.org/dev/peps/pep-0008/) style guide * Test your code with pep8 and pylint to avoid obvious issues * `pep8 ./check_cisco_*.py` - * `pylint ./check_cisco_*.py` \ No newline at end of file + * `pylint ./check_cisco_*.py` diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..992ee6b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +# Required python modules +argparse +pysnmp