Browse Source

added python requirements

master
Youen Toupin 2 years ago
parent
commit
8b2251da59
  1. 21
      README.md
  2. 9
      requirements.txt

21
README.md

@ -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

@ -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
Loading…
Cancel
Save