Refactoring island to python3.7

This commit is contained in:
VakarisZ 2019-09-17 11:54:10 +03:00
parent 35674286cf
commit 81fb8adc02
3 changed files with 4 additions and 4 deletions

View File

@ -4,11 +4,10 @@ pycryptodome
pyasn1 pyasn1
cffi cffi
twisted twisted
rdpy
requests requests
odict odict
paramiko paramiko
psutil==3.4.2 psutil
PyInstaller PyInstaller
six six
ecdsa ecdsa

View File

@ -1,4 +1,4 @@
from . import monkey_island.cc.main from monkey_island.cc.main import main
if "__main__" == __name__: if "__main__" == __name__:
monkey_island.cc.main.main() main()

View File

@ -25,3 +25,4 @@ wheel
mongoengine mongoengine
mongomock mongomock
requests requests
dpath