diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-09-10 23:18:18 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-09-10 23:18:18 +0200 |
commit | 6b837ae98b61813ce59162992d278662bb5a9f18 (patch) | |
tree | ece8ad8827e4bf9f937efc00ad75a4ad18aefbf1 | |
download | glutte-serial-web-6b837ae98b61813ce59162992d278662bb5a9f18.tar.gz glutte-serial-web-6b837ae98b61813ce59162992d278662bb5a9f18.tar.bz2 glutte-serial-web-6b837ae98b61813ce59162992d278662bb5a9f18.zip |
Add explanation for virtualenv creation
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | README.md | 15 | ||||
-rw-r--r-- | requirements.txt | 7 |
3 files changed, 26 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..de7c34d --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +bin +include +lib +pip-selfcheck.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..727df0c --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +How to setup +============ + + 1. Install virtualenv + 2. Clone this repo + 3. Setup a new virtualenv + + +Step-by-step +------------ + + cd glutte-serial-web + virtualenv . + source bin/activate + pip install -f requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..ecc337d --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +click==6.6 +Flask==0.11.1 +itsdangerous==0.24 +Jinja2==2.8 +MarkupSafe==0.23 +pyserial==3.1.1 +Werkzeug==0.11.11 |