Skip to content

Commit e32fc73

Browse files
authored
Merge pull request #67 from CaptainFreak/master
Added setup.py
2 parents 61214c6 + 0305a24 commit e32fc73

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-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: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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 "
19+
"and directory structures for storing loot and flags.",
20+
long_description=file.read(),
21+
author="codingo",
22+
version=__version__,
23+
author_email="[email protected]",
24+
url="http://github.com/codingo/Reconnoitre",
25+
packages=find_packages(exclude=('tests')),
26+
package_data={'Reconnoitre': ['*.txt']},
27+
entry_points={
28+
'console_scripts': [
29+
'Reconnoitre = Reconnoitre.Reconnoitre:main'
30+
]
31+
},
32+
include_package_data=True)

0 commit comments

Comments
 (0)