From 113cbf9225942888276b36099e8183b4d5f9148a Mon Sep 17 00:00:00 2001 From: Stefan Seering Date: Tue, 5 Nov 2024 12:02:29 +0100 Subject: [PATCH] Switch to using the standards format (requirements.txt) for Python dependencies. --- README.md | 2 +- requirements.txt | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 8000b53..cd79940 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ To edit and develop locally install the following packages and run the built in ```bash python3 -m venv env source env/bin/activate -pip install mkdocs-material mkdocs-git-revision-date-localized-plugin mkdocs-awesome-pages-plugin mkdocs-minify-plugin +pip install -r requirements.txt mkdocs serve ``` diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..bd2e9e4 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +mkdocs-material +mkdocs-git-revision-date-localized-plugin +mkdocs-awesome-pages-plugin +mkdocs-minify-plugin