forked from calebstewart/pwncat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 793 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
from setuptools import setup, find_packages
dependencies = [
"netifaces",
"packaging",
"prompt-toolkit",
"pycryptodome",
"requests",
"rich",
"python-rapidjson",
"ZODB",
"zodburi",
"Jinja2",
"paramiko",
]
dependency_links = []
# Setup
setup(
name="pwncat",
version="0.4.3",
python_requires=">=3.8",
description="A fancy reverse and bind shell handler",
author="Caleb Stewart",
url="https://gitlab.com/calebstewart/pwncat",
packages=find_packages(),
package_data={"pwncat": ["data/*"]},
entry_points={
"console_scripts": ["pwncat=pwncat.__main__:main", "pc=pwncat.__main__:main"]
},
data_files=[],
install_requires=dependencies,
dependency_links=dependency_links,
)