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
|
#!/usr/bin/env python
import os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
def find_packages(where='.'):
# os.walk -> list[(dirname, list[subdirs], list[files])]
return [folder.replace(os.sep, ".").strip(".")
for (folder, _, files) in os.walk(where)
if "__init__.py" in files]
long_description = (
'Pocsuite3 is an open-sourced remote vulnerability testing and proof-of-concept development framework '
'developed by the Knownsec 404 Team. It comes with a powerful proof-of-concept engine, many nice '
'features for the ultimate penetration testers and security researchers.'
)
setup(
name='pocsuite3',
version='2.1.0',
url='https://pocsuite.org',
description='Open-sourced remote vulnerability testing framework.',
long_description=long_description,
keywords='PoC,Exp,Pocsuite',
author='Knownsec 404 Team',
author_email='404-team@knownsec.com',
maintainer='Knownsec 404 Team',
platforms=['any'],
license='GPLv2',
zip_safe=False,
packages=find_packages(),
include_package_data=True,
python_requires='>=3.8',
entry_points={
"console_scripts": [
"pocsuite = pocsuite3.cli:main",
"poc-console = pocsuite3.console:main"
]
},
install_requires=[
"requests >= 2.22.0",
"requests-toolbelt",
"PySocks",
"urllib3",
"chardet",
"termcolor",
"colorama",
"prettytable",
"colorlog",
"scapy",
"Faker",
"pycryptodomex",
"dacite",
"PyYAML",
"lxml",
"docker",
"packaging"
],
extras_require={
'complete': [
'pyOpenSSL',
'jq',
],
}
)
|