-
-
Notifications
You must be signed in to change notification settings - Fork 456
/
setup.py
36 lines (32 loc) · 1.23 KB
/
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
28
29
30
31
32
33
34
35
36
""" __Doc__ File handle class """
from setuptools import find_packages, setup
from Reconnoitre.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="codingo@protonmail.com",
url="https://github.com/codingo/Reconnoitre",
packages=find_packages(
exclude=('tests')),
package_data={
'Reconnoitre': [
'*.txt',
'*.json']},
entry_points={
'console_scripts': ['reconnoitre = Reconnoitre.reconnoitre:main']},
include_package_data=True)