diff --git a/README.md b/README.md index 9e499e1f2ee2af0ee1a9423f55af1ff120302481..4a4feeb76aa9515565628ab1f25b5c898f37c63a 100644 --- a/README.md +++ b/README.md @@ -26,13 +26,8 @@ The general idea is to fire requests to MDMS, process the information, use gitla ### Python packages / libs -- [python-gitlab](https://python-gitlab.readthedocs.io/en/stable/) -- [bs4](https://www.crummy.com/software/BeautifulSoup/bs4/doc/) -- [csv](https://docs.python.org/3/library/csv.html) (Python Standard Library) -- [docx](https://python-docx.readthedocs.io/en/latest/) +Set up the required python modules using -You can install these using `pip` for example: - -```sh -pip3 install python-gitlab bs4 +```shell +python3 -m pip install -r requirements.txt ``` diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..700bfd1c90def0de2c9b0690ca9952131ea6fe1a --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +bs4 +docx +lxml +python-gitlab