#!/usr/bin/make -f


%:
	dh $@
override_dh_auto_build:
	python3 -m venv .
	./bin/pip3 install pyinstaller . --verbose
	./bin/pyinstaller netexec.spec
dh_auto_build:
