2020-05-07 02:01:08 +00: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 = [
|
2021-05-31 21:27:44 +00:00
|
|
|
"netifaces",
|
|
|
|
"packaging",
|
|
|
|
"prompt-toolkit",
|
|
|
|
"pycryptodome",
|
|
|
|
"requests",
|
2020-09-23 23:31:09 +00:00
|
|
|
"rich",
|
2021-05-31 21:27:44 +00:00
|
|
|
"python-rapidjson",
|
|
|
|
"ZODB",
|
|
|
|
"zodburi",
|
|
|
|
"Jinja2",
|
|
|
|
"paramiko",
|
2020-05-07 02:01:08 +00:00
|
|
|
]
|
2021-05-31 21:27:44 +00:00
|
|
|
dependency_links = []
|
2020-10-08 17:22:41 +00:00
|
|
|
|
2020-05-07 02:01:08 +00:00
|
|
|
# Setup
|
|
|
|
setup(
|
|
|
|
name="pwncat",
|
2021-06-02 23:49:31 +00:00
|
|
|
version="0.4.0a1",
|
2020-10-04 21:20:49 +00:00
|
|
|
python_requires=">=3.8",
|
2020-05-07 02:01:08 +00:00
|
|
|
description="A fancy reverse and bind shell handler",
|
|
|
|
author="Caleb Stewart",
|
|
|
|
url="https://gitlab.com/calebstewart/pwncat",
|
|
|
|
packages=find_packages(),
|
2020-05-28 05:21:08 +00:00
|
|
|
package_data={"pwncat": ["data/*"]},
|
2020-10-04 21:20:49 +00:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": ["pwncat=pwncat.__main__:main", "pc=pwncat.__main__:main"]
|
|
|
|
},
|
2020-05-07 02:01:08 +00:00
|
|
|
data_files=[],
|
|
|
|
install_requires=dependencies,
|
|
|
|
dependency_links=dependency_links,
|
|
|
|
)
|