author | Reimar Bauer <rb.proj AT googlemail DOT com> |
Tue, 21 Jan 2014 07:27:16 +0100 | |
changeset 198 | b2228c48be7a |
parent 192 | 60b10eef975d |
child 232 | ec1bb552ce55 |
permissions | -rw-r--r-- |
rb@82 | 1 |
Installation |
rb@82 | 2 |
------------ |
rb@82 | 3 |
|
rb@82 | 4 |
First you have to clone this repository and all its submodules:: |
rb@82 | 5 |
hg clone ssh://hg@bitbucket.org/pkoppatz/pymove3d-app |
rb@82 | 6 |
cd pymove3d-app |
rb@82 | 7 |
|
rb@82 | 8 |
Next create a virtualenv and install all the requirments into it. In this |
rb@82 | 9 |
example we are using virtualenvwrapper to manage the virtualenv:: |
rb@82 | 10 |
|
rb@82 | 11 |
mkvirtualenv pymove3d-env |
rb@82 | 12 |
|
rb@82 | 13 |
This repository provides requirements and configurations. |
rb@82 | 14 |
|
rb@82 | 15 |
For local development, install the requirements specified in |
rb@82 | 16 |
requirements:: |
rb@82 | 17 |
|
rb@82 | 18 |
pip install -r requirements.txt |
rb@82 | 19 |
|
rb@82 | 20 |
Now that this is complete, you can run pymove3d in that environment:: |
rb@82 | 21 |
|
rb@82 | 22 |
python ./pymove3d.py |
rb@82 | 23 |
|
peter@192 | 24 |
Testing and developing is done with:: |
peter@192 | 25 |
|
peter@192 | 26 |
pip install -r requirements-dev.txt |
peter@192 | 27 |
|
peter@192 | 28 |
Now you have additional packages for development and testing: |
peter@192 | 29 |
|
peter@192 | 30 |
- pep8 |
peter@192 | 31 |
- py.test |
peter@192 | 32 |
- selenium |
peter@192 | 33 |
|
rb@82 | 34 |
|
rb@82 | 35 |
|
rb@82 | 36 |