mirror of
https://github.com/calebstewart/pwncat.git
synced 2024-11-24 01:25:37 +01:00
Added paramiko dependency (linked to my fork until my pull request is (hopefully) accepted)
This commit is contained in:
parent
14098a32a3
commit
596d31af77
@ -1,5 +1,6 @@
|
|||||||
colorama==0.4.3
|
colorama==0.4.3
|
||||||
git+https://github.com/calebstewart/python-prompt-toolkit
|
git+https://github.com/calebstewart/python-prompt-toolkit
|
||||||
|
git+https://github.com/calebstewart/paramiko
|
||||||
wcwidth==0.1.9
|
wcwidth==0.1.9
|
||||||
netifaces==0.10.9
|
netifaces==0.10.9
|
||||||
pygments==2.6.1
|
pygments==2.6.1
|
||||||
@ -7,5 +8,3 @@ base64io
|
|||||||
commentjson
|
commentjson
|
||||||
requests
|
requests
|
||||||
sqlalchemy
|
sqlalchemy
|
||||||
sphinx
|
|
||||||
sphinx_rtd_theme
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
colorama==0.4.3
|
colorama==0.4.3
|
||||||
git+https://github.com/calebstewart/python-prompt-toolkit
|
git+https://github.com/calebstewart/python-prompt-toolkit
|
||||||
|
git+https://github.com/calebstewart/paramiko
|
||||||
wcwidth==0.1.9
|
wcwidth==0.1.9
|
||||||
netifaces==0.10.9
|
netifaces==0.10.9
|
||||||
pygments==2.6.1
|
pygments==2.6.1
|
||||||
|
6
setup.py
6
setup.py
@ -15,11 +15,13 @@ dependencies = [
|
|||||||
"commentjson",
|
"commentjson",
|
||||||
"requests",
|
"requests",
|
||||||
"prompt-toolkit",
|
"prompt-toolkit",
|
||||||
"sqlalchemy"
|
"sqlalchemy",
|
||||||
|
"paramiko",
|
||||||
]
|
]
|
||||||
|
|
||||||
dependency_links = [
|
dependency_links = [
|
||||||
"https://github.com/calebstewart/python-prompt-toolkit/tarball/master#egg=prompt-toolkit"
|
"https://github.com/calebstewart/python-prompt-toolkit/tarball/master#egg=prompt-toolkit",
|
||||||
|
"https://github.com/calebstewart/paramiko/tarball/master#egg=paramiko",
|
||||||
]
|
]
|
||||||
|
|
||||||
# Setup
|
# Setup
|
||||||
|
Loading…
Reference in New Issue
Block a user