added python requirements
This commit is contained in:
parent
0d607e63a2
commit
8b2251da59
21
README.md
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
Normal file
9
requirements.txt
Normal 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
|
Loading…
Reference in New Issue
Block a user