Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
skavngr
GitHub Repository: skavngr/rapidscan
Path: blob/master/setup.py
63 views
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
)
24
25