forked from nccgroup/autopwn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (27 loc) · 1.16 KB
/
setup.py
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
#!/usr/bin/env python3
from setuptools import setup
long_desc = '''autopwn is designed to make a pentester's life easier and more consistent by allowing them to specify tools they would like to run against targets, without having to type them in a shell or write a script. This tool will probably be useful during certain exams as well..'''
setup(
name='autopwn',
version='0.25.5',
description='Specify targets and run sets of tools against them',
long_description=long_desc,
author='Aidan Marlin',
author_email='aidan.marlin@nccgroup.trust',
url='https://github.com/nccgroup/autopwn',
license='GNU Affero GPL v3',
packages=['autopwn'],
install_requires=[
'PyYAML', 'screenutils', 'inquirer',
'readchar<=0.7' # https://github.com/magmax/python-inquirer/issues/8
],
include_package_data=True,
zip_safe=False,
entry_points={'console_scripts': ['autopwn = autopwn:main']},
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Information Technology',
'Topic :: Security',
'Environment :: Console'],
keywords='autopwn pentest automate toolset hack'
)