forked from calebstewart/pwncat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
88 lines (81 loc) · 2.38 KB
/
Copy pathsetup.py
File metadata and controls
88 lines (81 loc) · 2.38 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/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 = [
"base64io==1.0.3",
"bcrypt==3.1.7",
"certifi==2020.6.20",
"cffi==1.14.0",
"chardet==3.0.4",
"colorama==0.4.3",
"commentjson==0.8.3",
"commonmark==0.9.1",
"cryptography==2.9.2",
"DataProperty==0.49.1",
"idna==2.10",
"lark-parser==0.7.8",
"mbstrdecoder==1.0.0",
"msgfy==0.1.0",
"netifaces==0.10.9",
"packaging==20.4",
"paramiko==2.7.1",
"pathvalidate==2.3.0",
"pprintpp==0.4.0",
"prompt-toolkit==3.0.5",
"pycparser==2.20",
"pycryptodome==3.9.8",
"Pygments==2.6.1",
"PyNaCl==1.4.0",
"pytablewriter==0.54.0",
"python-dateutil==2.8.1",
"pytz==2020.1",
"requests==2.24.0",
"rich",
"six==1.15.0",
"SQLAlchemy==1.3.18",
"tabledata==1.1.2",
"tcolorpy==0.0.5",
"typepy==1.1.1",
"typing-extensions==3.7.4.2",
"urllib3==1.25.9",
"wcwidth==0.1.9",
"python-rapidjson==0.9.1",
]
dependency_links = [
"https://github.com/calebstewart/paramiko/tarball/master#egg=paramiko",
"https://github.com/JohnHammond/base64io-python/tarball/master#egg=base64io",
]
# Read the requirements
with open("requirements.txt") as filp:
dependencies = [
line.strip() for line in filp.readlines() if not line.startswith("#")
]
# Build dependency links for entries that need them
# This works for "git+https://github.com/user/package" refs
dependency_links = [dep for dep in dependencies if dep.startswith("git+")]
for i, dep in enumerate(dependency_links):
link = dep.split("git+")[1]
name = dep.split("/")[-1]
dependency_links[i] = f"{link}/tarball/master#egg={name}"
# Strip out git+ links from dependencies
dependencies = [dep for dep in dependencies if not dep.startswith("git+")]
# Setup
setup(
name="pwncat",
version="0.3.1",
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,
)