forked from RedTeamOperations/PivotSuite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (25 loc) · 911 Bytes
/
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
from setuptools import setup , find_packages
setup(
name='pivotsuite',
version='1.0',
packages= find_packages(),
url='https://github.com/RedTeamOperations/PivotSuite',
license='GPL v3',
author='Manish Gupta',
author_email='admin@myhacker.online',
description='PivotSuite : A Network Pivoting Toolkit',
long_description="A Network Pivoting Toolkit for Red Teamers / Penetration Testers. "
"For More Informations Visit: https://github.com/RedTeamOperations/PivotSuite",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking",
],
entry_points={
'console_scripts': [
'pivotsuite = pivot_suite.pivotsuite:main',
],
},
)