forked from schokokeksorg/freewvs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/python3
import os
import setuptools
import setuptools.command.install
f = open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'))
readme = f.read()
f.close()
setuptools.setup(
name='freewvs',
version="0.1.1",
description="A free web vulnerability scanner",
long_description=readme,
long_description_content_type='text/markdown',
url='https://freewvs.schokokeks.org/',
packages=[],
scripts=['freewvs', 'update-freewvsdb'],
python_requires='>=3',
license="CC0",
keywords=['security', 'vulnerability', 'web'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'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',
]
)