diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-06-29 02:04:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-29 02:04:38 -0700 |
commit | 025efc030a66824f726e64a8b1c0c76aeef31fce (patch) | |
tree | fb6459c64e6dacc0beb0308e9bcb8231c50e266c /dev.ps1 | |
parent | ac860c6fc018eb493d2b9a0bca79e7d6640625ff (diff) | |
parent | b27c6ee18181d3300d5f47a3b0c1805b7e3d5c75 (diff) | |
download | mitmproxy-025efc030a66824f726e64a8b1c0c76aeef31fce.tar.gz mitmproxy-025efc030a66824f726e64a8b1c0c76aeef31fce.tar.bz2 mitmproxy-025efc030a66824f726e64a8b1c0c76aeef31fce.zip |
Merge pull request #1301 from mitmproxy/simplify-tox
Simplify tox
Diffstat (limited to 'dev.ps1')
-rw-r--r-- | dev.ps1 | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/dev.ps1 b/dev.ps1 new file mode 100644 index 00000000..7f329e8f --- /dev/null +++ b/dev.ps1 @@ -0,0 +1,16 @@ +$ErrorActionPreference = "Stop" +$VENV = ".\venv" + +virtualenv $VENV --always-copy +& $VENV\Scripts\activate.ps1 + +python -m pip install --disable-pip-version-check -U pip +cmd /c "pip install -r requirements.txt 2>&1" + +echo @" + + * Created virtualenv environment in $VENV. + * Installed all dependencies into the virtualenv. + * Activated virtualenv environment. + +"@
\ No newline at end of file |