diff options
author | kali <kali@leap.se> | 2013-01-31 23:21:38 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2013-01-31 23:21:38 +0900 |
commit | e84e772a466ed6198afeaa4ccaaa34b84fcc5840 (patch) | |
tree | 89c09d701b1079db37004e7c4e9aae524830e2b4 | |
parent | c7926409133a153a32bd6bebc8710e4333d1814e (diff) |
rm old readme
-rw-r--r-- | README.txt | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/README.txt b/README.txt deleted file mode 100644 index 510bda58..00000000 --- a/README.txt +++ /dev/null @@ -1,95 +0,0 @@ -======================================== -= LEAP = -= The LEAP Encryption Access Project = -= your internet encryption toolkit = -======================================== - -Installation -============= - -Dependencies --------------- - -* python <= 2.7 -* python setuptools -* qt4 libraries -* python-qt4 -* python-nose, python-mock, python-coverage (if you want to run tests) - -If you are on a debian-based system, you can run: - -apt-get install python-qt4 python-qt4-doc pyqt4-dev-tools python-setuptools python-nose - -Install ---------------- - -If not using virtualenv: -sudo python setup.py install - -If using virtualenv: -python setup.py install - - -Running the App ------------------ - -You need to set up a provider in your eip.cfg file: - -cd ~/.config/leap -vim eip.cfg - -[provider] -remote_ip = XXX.XXX.XXX.XXX - -and then run: - -leap --debug - -(or python app.py --debug if you run it from the src/leap folder). - -Development -============== - -Running tests -------------- - -./run_tests.sh - -if you want to run specific tests, pass the (sub)module to nose: - -nosetests leap.util - -or - -nosetests leap.util.test_leap_argparse - - -Test-deps ---------- - -have a look at setup/test-requires - -Hack --------------- - -(recommended) -virtualenv . # ensure your .gitignore knows about it -bin/activate - -# you should probably simlink sip.so and PyQt4 to your system-wide -# install, there are some issues with it. - -python setup.py develop - -# ... TBD: finish develop howto. -# ... and explain how is python setup develop useful. - -Compiling resource/ui files ------------------------------ - -You should refresh resource/ui files every time you -change an image or a resource/ui (.ui / .qc). From -the root folder: - -make ui -make resources |