added python requirements

This commit is contained in:
Youen Toupin 2022-08-11 22:31:05 +02:00
parent 0d607e63a2
commit 8b2251da59
2 changed files with 28 additions and 2 deletions

View File

@ -1,3 +1,20 @@
# sphinx-web
Python web app to publish documentation compiled using Sphinx
Python web app to publish documentation compiled using Sphinx
# Installation
``` shell
cd sphinx-web
python3 -m venv venv
source venv/bin/activate # on Windows execute instead: venv\Scripts\activate.bat
python3 -m pip install -r requirements.txt
```
# Development
## Update dependencies
After activating the virtual environment, run this command to update the list of dependencies with what is currently installed:
``` shell
pip freeze > requirements.txt
```

9
requirements.txt Normal file
View File

@ -0,0 +1,9 @@
click==8.1.3
colorama==0.4.5
Flask==2.2.2
importlib-metadata==4.12.0
itsdangerous==2.1.2
Jinja2==3.1.2
MarkupSafe==2.1.1
Werkzeug==2.2.2
zipp==3.8.1