Skip to content

Commit

Permalink
Merge pull request codingo#67 from CaptainFreak/master
Browse files Browse the repository at this point in the history
Added setup.py
  • Loading branch information
codingo authored Oct 15, 2018
2 parents 61214c6 + 0305a24 commit e32fc73
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/core/__version__.py
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'
32 changes: 32 additions & 0 deletions setup.py
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)

0 comments on commit e32fc73

Please sign in to comment.