#! /usr/bin/env python31from setuptools import setup23import pathlib45# The directory containing this file6HERE = pathlib.Path(__file__).parent78# The text of the README file9README = (HERE / "README.md").read_text()1011setup(12name = "rapidscan",13version = '1.2',14description = "The Multi-Tool Web Vulnerability Scanner.",15long_description = README,16long_description_content_type = "text/markdown",17url = "https://github.com/skavngr/rapidscan",18author = "sh4nx0r",19py_modules = ['rapidscan',],20install_requires = [],21python_requires=">=3.6",22)232425