2020-05-07 04:01:08 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
|
|
|
from setuptools.command.install import install
|
|
|
|
import shutil, os, stat
|
|
|
|
import binascii
|
|
|
|
|
|
|
|
dependencies = [
|
2020-05-15 22:13:58 +02:00
|
|
|
"colorama==0.4.3",
|
|
|
|
"wcwidth==0.1.9",
|
|
|
|
"netifaces==0.10.9",
|
|
|
|
"pygments==2.6.1",
|
|
|
|
"base64io",
|
|
|
|
"commentjson",
|
|
|
|
"requests",
|
2020-05-18 05:37:27 +02:00
|
|
|
"prompt-toolkit",
|
2020-05-22 04:53:09 +02:00
|
|
|
"sqlalchemy",
|
|
|
|
"paramiko",
|
2020-05-28 07:26:45 +02:00
|
|
|
"pytablewriter",
|
2020-06-06 03:32:24 +02:00
|
|
|
"rich",
|
2020-05-07 04:01:08 +02:00
|
|
|
]
|
|
|
|
|
2020-05-15 22:13:58 +02:00
|
|
|
dependency_links = [
|
2020-05-22 04:53:09 +02:00
|
|
|
"https://github.com/calebstewart/paramiko/tarball/master#egg=paramiko",
|
2020-05-24 09:49:45 +02:00
|
|
|
"https://github.com/JohnHammond/base64io-python/tarball/master#egg=base64io",
|
2020-05-15 22:13:58 +02:00
|
|
|
]
|
2020-05-07 04:01:08 +02:00
|
|
|
|
|
|
|
# Setup
|
|
|
|
setup(
|
|
|
|
name="pwncat",
|
|
|
|
version="0.1",
|
|
|
|
description="A fancy reverse and bind shell handler",
|
|
|
|
author="Caleb Stewart",
|
|
|
|
url="https://gitlab.com/calebstewart/pwncat",
|
|
|
|
packages=find_packages(),
|
2020-05-28 07:21:08 +02:00
|
|
|
package_data={"pwncat": ["data/*"]},
|
2020-05-07 04:01:08 +02:00
|
|
|
entry_points={"console_scripts": ["pwncat=pwncat.__main__:main"]},
|
|
|
|
data_files=[],
|
|
|
|
install_requires=dependencies,
|
|
|
|
dependency_links=dependency_links,
|
|
|
|
)
|