1
0
mirror of https://github.com/calebstewart/pwncat.git synced 2024-11-27 10:54:14 +01:00

fix python install setup

This commit is contained in:
trevorbryant 2020-05-15 16:13:58 -04:00
parent 995ddd320f
commit 9460a51e31

View File

@ -7,12 +7,19 @@ import shutil, os, stat
import binascii
dependencies = [
"prompt-toolkit",
"wcwidth",
"colorama"
"colorama==0.4.3",
"wcwidth==0.1.9",
"netifaces==0.10.9",
"pygments==2.6.1",
"base64io",
"commentjson",
"requests",
"prompt-toolkit"
]
dependency_links = []
dependency_links = [
"https://github.com/calebstewart/python-prompt-toolkit/tarball/master#egg=prompt-toolkit"
]
# Setup
setup(