forked from skavngr/rapidscan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 677 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /usr/bin/env python3
from setuptools import setup
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name = "rapidscan",
version = '1.2',
description = "The Multi-Tool Web Vulnerability Scanner.",
long_description = README,
long_description_content_type = "text/markdown",
url = "https://github.com/skavngr/rapidscan",
author = "sh4nx0r",
py_modules = ['rapidscan',],
install_requires = [],
python_requires=">=3.6",
)