forked from codingo/Reconnoitre
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request codingo#67 from CaptainFreak/master
Added setup.py
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# | ||
# |"""\-= RECONNOITRE | ||
# (____) An OSCP scanner by @codingo_ | ||
# https://github.com/codingo/VHostScan | ||
|
||
__version__ = '1.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
""" __Doc__ File handle class """ | ||
from setuptools import find_packages, setup | ||
from lib.core.__version__ import __version__ | ||
|
||
|
||
def dependencies(imported_file): | ||
""" __Doc__ Handles dependencies """ | ||
with open(imported_file) as file: | ||
return file.read().splitlines() | ||
|
||
|
||
with open("README.md") as file: | ||
setup( | ||
name="Reconnoitre", | ||
license="GPLv3", | ||
description="A reconnaissance tool made for the OSCP labs to automate information gathering, " | ||
"and service enumeration whilst creating a directory structure to store results," | ||
"findings and exploits used for each host, recommended commands to execute " | ||
"and directory structures for storing loot and flags.", | ||
long_description=file.read(), | ||
author="codingo", | ||
version=__version__, | ||
author_email="[email protected]", | ||
url="http://github.com/codingo/Reconnoitre", | ||
packages=find_packages(exclude=('tests')), | ||
package_data={'Reconnoitre': ['*.txt']}, | ||
entry_points={ | ||
'console_scripts': [ | ||
'Reconnoitre = Reconnoitre.Reconnoitre:main' | ||
] | ||
}, | ||
include_package_data=True) |