File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ #
2
+ # |"""\-= RECONNOITRE
3
+ # (____) An OSCP scanner by @codingo_
4
+ # https://github.com/codingo/VHostScan
5
+
6
+ __version__ = '1.0'
Original file line number Diff line number Diff line change
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
+
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 )
You can’t perform that action at this time.
0 commit comments