pwncat/setup.py

72 lines
1.7 KiB
Python
Raw Normal View History

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 = [
2020-07-20 01:16:30 +00:00
"base64io==1.0.3",
"bcrypt==3.1.7",
"certifi==2020.6.20",
"cffi==1.14.0",
"chardet==3.0.4",
2020-05-15 20:13:58 +00:00
"colorama==0.4.3",
2020-07-20 01:16:30 +00:00
"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",
2020-05-15 20:13:58 +00:00
"netifaces==0.10.9",
"packaging==20.4",
2020-07-20 01:16:30 +00:00
"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",
2020-07-20 01:16:30 +00:00
"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",
2020-05-07 02:01:08 +00:00
]
2020-05-15 20:13:58 +00:00
dependency_links = [
"https://github.com/calebstewart/paramiko/tarball/master#egg=paramiko",
"https://github.com/JohnHammond/base64io-python/tarball/master#egg=base64io",
2020-05-15 20:13:58 +00:00
]
2020-05-07 02:01:08 +00:00
# Setup
setup(
name="pwncat",
2020-07-18 18:28:04 +00:00
version="0.3.1",
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(),
package_data={"pwncat": ["data/*"]},
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,
)