1
0
mirror of https://github.com/calebstewart/pwncat.git synced 2024-11-24 01:25:37 +01:00
pwncat/setup.py

31 lines
678 B
Python
Raw Normal View History

2020-05-07 04:01:08 +02: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 = [
"prompt-toolkit",
"wcwidth",
"colorama"
]
dependency_links = []
# Setup
setup(
name="pwncat",
version="0.1",
description="A fancy reverse and bind shell handler",
author="Caleb Stewart",
url="https://gitlab.com/calebstewart/pwncat",
packages=find_packages(),
package_data={},
entry_points={"console_scripts": ["pwncat=pwncat.__main__:main"]},
data_files=[],
install_requires=dependencies,
dependency_links=dependency_links,
)