-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (27 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·30 lines (27 loc) · 1.15 KB
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
#!/usr/bin/env python3
from setuptools import setup
long_desc = '''torc 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='torc',
version='0.1.0',
description='Tool orchestrator. Specify targets and run sets of tools against them',
long_description=long_desc,
author='Aidan Marlin',
author_email='aidan.marlin@gmail.com',
url='https://github.com/rascal999/torc',
license='GNU Affero GPL v3',
packages=['torc'],
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': ['torc = torc:main']},
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Information Technology',
'Topic :: Security',
'Environment :: Console'],
keywords='torc pentest automate toolset hack'
)