Switch to using the standards format (requirements.txt) for Python dependencies.

This commit is contained in:
Stefan Seering 2024-11-05 12:02:29 +01:00
parent 681cee9723
commit 113cbf9225
No known key found for this signature in database
GPG Key ID: FE8E8C295B7FB288
2 changed files with 5 additions and 1 deletions

View File

@ -11,7 +11,7 @@ To edit and develop locally install the following packages and run the built in
```bash ```bash
python3 -m venv env python3 -m venv env
source env/bin/activate 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 mkdocs serve
``` ```

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
mkdocs-material
mkdocs-git-revision-date-localized-plugin
mkdocs-awesome-pages-plugin
mkdocs-minify-plugin