This commit is contained in:
Tim Blume 2021-03-20 22:56:03 +01:00
parent 8b7b40d3ab
commit 600d7146d3
21 changed files with 175 additions and 39 deletions

View file

@ -0,0 +1,3 @@
mitmproxy
mitmdump
pyzmq

6
mitmaddon/setup.py Normal file
View file

@ -0,0 +1,6 @@
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='bigsnitch-mitmaddon',
version='1.0',
packages=find_packages())

15
mitmaddon/tox.ini Normal file
View file

@ -0,0 +1,15 @@
[tox]
skipsdist = true
envlist = py3
# Add environment to use the default python3 installation
[testenv:py3]
basepython = python3
[testenv]
usedevelop = true
deps = -r{toxinidir}/requirements.txt
setenv =
PYTHONDONTWRITEBYTECODE=1
commands =
{envpython} sh ../test.sh