pwncat/setup.py

38 lines
886 B
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-05-15 20:13:58 +00:00
"colorama==0.4.3",
"wcwidth==0.1.9",
"netifaces==0.10.9",
"pygments==2.6.1",
"base64io",
"commentjson",
"requests",
"prompt-toolkit"
2020-05-07 02:01:08 +00:00
]
2020-05-15 20:13:58 +00:00
dependency_links = [
"https://github.com/calebstewart/python-prompt-toolkit/tarball/master#egg=prompt-toolkit"
]
2020-05-07 02:01:08 +00:00
# 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,
)