Skip to content

Commit 86336c5

Browse files
committed
Added setup.py
1 parent 61214c6 commit 86336c5

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

lib/core/__version__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#
2+
# |"""\-= RECONNOITRE
3+
# (____) An OSCP scanner by @codingo_
4+
# https://github.com/codingo/VHostScan
5+
6+
__version__ = '1.0'

setup.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
""" __Doc__ File handle class """
2+
from setuptools import find_packages, setup
3+
from lib.core.__version__ import __version__
4+
5+
6+
def dependencies(imported_file):
7+
""" __Doc__ Handles dependencies """
8+
with open(imported_file) as file:
9+
return file.read().splitlines()
10+
11+
12+
with open("README.md") as file:
13+
setup(
14+
name="Reconnoitre",
15+
license="GPLv3",
16+
description="A reconnaissance tool made for the OSCP labs to automate information gathering, "
17+
"and service enumeration whilst creating a directory structure to store results,"
18+
"findings and exploits used for each host, recommended commands to execute and directory structures for storing loot and flags.",
19+
long_description=file.read(),
20+
author="codingo",
21+
version=__version__,
22+
author_email="[email protected]",
23+
url="http://github.com/codingo/Reconnoitre",
24+
packages=find_packages(exclude=('tests')),
25+
package_data={'Reconnoitre': ['*.txt']},
26+
entry_points={
27+
'console_scripts': [
28+
'Reconnoitre = Reconnoitre.Reconnoitre:main'
29+
]
30+
},
31+
include_package_data=True)

0 commit comments

Comments
 (0)