2020-05-07 04:01:08 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2021-06-14 00:48:33 +02:00
|
|
|
from setuptools import setup, find_packages
|
2020-05-07 04:01:08 +02:00
|
|
|
|
|
|
|
dependencies = [
|
2021-05-31 23:27:44 +02:00
|
|
|
"netifaces",
|
|
|
|
"packaging",
|
|
|
|
"prompt-toolkit",
|
|
|
|
"pycryptodome",
|
|
|
|
"requests",
|
2020-09-24 01:31:09 +02:00
|
|
|
"rich",
|
2021-05-31 23:27:44 +02:00
|
|
|
"python-rapidjson",
|
|
|
|
"ZODB",
|
|
|
|
"zodburi",
|
|
|
|
"Jinja2",
|
|
|
|
"paramiko",
|
2020-05-07 04:01:08 +02:00
|
|
|
]
|
2021-05-31 23:27:44 +02:00
|
|
|
dependency_links = []
|
2020-10-08 19:22:41 +02:00
|
|
|
|
2020-05-07 04:01:08 +02:00
|
|
|
# Setup
|
|
|
|
setup(
|
|
|
|
name="pwncat",
|
2021-06-16 03:24:13 +02:00
|
|
|
version="0.4.2",
|
2020-10-04 23:20:49 +02:00
|
|
|
python_requires=">=3.8",
|
2020-05-07 04:01:08 +02:00
|
|
|
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-10-04 23:20:49 +02:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": ["pwncat=pwncat.__main__:main", "pc=pwncat.__main__:main"]
|
|
|
|
},
|
2020-05-07 04:01:08 +02:00
|
|
|
data_files=[],
|
|
|
|
install_requires=dependencies,
|
|
|
|
dependency_links=dependency_links,
|
|
|
|
)
|