setup.py
901b35a1
 #!/usr/bin/python3
 
 import os
 import setuptools
 import setuptools.command.install
 
a3e985fc
 f = open(
     os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md"),
     encoding="ascii",
 )
901b35a1
 readme = f.read()
 f.close()
 
 setuptools.setup(
a3e985fc
     name="freewvs",
cec45e53
     version="0.1.3",
901b35a1
     description="A free web vulnerability scanner",
     long_description=readme,
a3e985fc
     long_description_content_type="text/markdown",
     url="https://freewvs.schokokeks.org/",
901b35a1
     packages=[],
a3e985fc
     scripts=["freewvs", "update-freewvsdb"],
     python_requires=">=3",
bba40c5c
     license="0BSD",
a3e985fc
     keywords=["security", "vulnerability", "web"],
901b35a1
     classifiers=[
a3e985fc
         "Development Status :: 4 - Beta",
         "Intended Audience :: System Administrators",
bba40c5c
         "License :: 0BSD",
a3e985fc
         "Natural Language :: English",
         "Programming Language :: Python :: 3",
         "Programming Language :: Python :: 3 :: Only",
         "Programming Language :: Python :: 3.7",
         "Programming Language :: Python :: 3.8",
         "Programming Language :: Python :: 3.9",
         "Programming Language :: Python :: 3.10",
         "Programming Language :: Python :: 3.11",
     ],
901b35a1
 )