diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2015-03-06 10:03:11 +0100 | 
|---|---|---|
| committer | Maximilian Hils <git@maximilianhils.com> | 2015-03-06 10:03:11 +0100 | 
| commit | 60dc5e0fe3d2ba6fff1805d47aad7232772da91c (patch) | |
| tree | 14a6442fe253c801c194243b8d6458365e7ce146 | |
| parent | 8c1978b7bfeda6d3fe5d438bc027d25830c1f91d (diff) | |
| download | mitmproxy-60dc5e0fe3d2ba6fff1805d47aad7232772da91c.tar.gz mitmproxy-60dc5e0fe3d2ba6fff1805d47aad7232772da91c.tar.bz2 mitmproxy-60dc5e0fe3d2ba6fff1805d47aad7232772da91c.zip | |
add mitmweb executable
| -rw-r--r-- | setup.py | 5 | 
1 files changed, 3 insertions, 2 deletions
| @@ -11,7 +11,7 @@ here = os.path.abspath(os.path.dirname(__file__))  with open(os.path.join(here, 'README.txt'), encoding='utf-8') as f:      long_description = f.read() -scripts = ["mitmdump"] +scripts = ["mitmdump", "mitmweb"]  if os.name != "nt":      scripts.append("mitmproxy") @@ -29,7 +29,8 @@ script_deps = {          "lxml>=3.3.6",          "Pillow>=2.3.0",      }, -    "mitmdump": set() +    "mitmdump": set(), +    "mitmweb": set()  }  for script in scripts:      deps.update(script_deps[script]) | 
