Skip to content

Commit 9f70df2

Browse files
authored
Merge pull request #36 from tristanlatr/setup
2 parents fe545ea + 76f5344 commit 9f70df2

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,16 @@ _**RapidScan has been ported to Python3 i.e. v1.2**. The Python2.7 codebase is a
5555
https://user-images.githubusercontent.com/6489729/138737524-9c4dc567-ec78-40b4-9a7b-8ff52d5dc98b.mp4
5656

5757

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+
5868
### Docker Support
5969
Under development.
6070

setup.py

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
)

0 commit comments

Comments
 (0)