diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-03-14 02:33:21 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-03-14 02:33:21 +0100 |
commit | f815525f184658ce291b3882b089dcc24036593f (patch) | |
tree | 6e8d9518595667cd0cefb66276c00e26420651a4 /dev | |
parent | 95226108662bf605a1a251914a5d6fcbc10063b1 (diff) | |
download | mitmproxy-f815525f184658ce291b3882b089dcc24036593f.tar.gz mitmproxy-f815525f184658ce291b3882b089dcc24036593f.tar.bz2 mitmproxy-f815525f184658ce291b3882b089dcc24036593f.zip |
simplify virtualenv
- add dev.bat for Windows users
- remove ~/.pipcache creation.
If that causes issues with PyInstaller, we should use
pip --no-cache-dir there or rm -r pip.locations.USER_CACHE_DIR.
- remove superfluous pip install calls.
Diffstat (limited to 'dev')
-rwxr-xr-x | dev | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -1,16 +1,6 @@ #!/bin/sh VENV=../venv.mitmproxy -PIP="$VENV/bin/pip --cache-dir ~/.pipcache" - -echo "This script sets up the following:" -echo "\t~/.pipcache - A pip cache directory" -echo "\t$VENV - A development virtualenv" - -mkdir -p ~/.pipcache virtualenv $VENV source $VENV/bin/activate -$PIP install -r ./requirements.txt -# Re-install these to make them editable -$PIP install --editable ../netlib -$PIP install --editable ../pathod +pip install --src .. -r requirements.txt
\ No newline at end of file |