File tree 2 files changed +33
-0
lines changed
2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,16 @@ _**RapidScan has been ported to Python3 i.e. v1.2**. The Python2.7 codebase is a
55
55
https://user-images.githubusercontent.com/6489729/138737524-9c4dc567-ec78-40b4-9a7b-8ff52d5dc98b.mp4
56
56
57
57
58
+ ## Installation
59
+
60
+ Alternatively, your can install the ` rapidscan ` python module with ` pip ` . This will create a link for ` rapidscan ` in your PATH.
61
+
62
+ ```
63
+ git clone https://github.com/skavngr/rapidscan.git /opt/
64
+ cd /opt/rapidscan
65
+ python3 -m pip install .
66
+ ```
67
+
58
68
### Docker Support
59
69
Under development.
60
70
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env python3
2
+ from setuptools import setup
3
+
4
+ import pathlib
5
+
6
+ # The directory containing this file
7
+ HERE = pathlib .Path (__file__ ).parent
8
+
9
+ # The text of the README file
10
+ README = (HERE / "README.md" ).read_text ()
11
+
12
+ setup (
13
+ name = "rapidscan" ,
14
+ version = '1.2' ,
15
+ description = "The Multi-Tool Web Vulnerability Scanner." ,
16
+ long_description = README ,
17
+ long_description_content_type = "text/markdown" ,
18
+ url = "https://github.com/skavngr/rapidscan" ,
19
+ author = "sh4nx0r" ,
20
+ py_modules = ['rapidscan' ,],
21
+ install_requires = [],
22
+ python_requires = ">=3.6" ,
23
+ )
You can’t perform that action at this time.
0 commit comments