5332b07b5cac4e0cd06ec51fb6770e35d985aab6
Hanno Böck add setup.py

Hanno Böck authored 4 years ago

1) #!/usr/bin/python3
2) 
3) import os
4) import setuptools
5) import setuptools.command.install
6) 
7) f = open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'))
8) readme = f.read()
9) f.close()
10) 
11) setuptools.setup(
12)     name='freewvs',
Hanno Böck update version

Hanno Böck authored 3 years ago

13)     version="0.1.1",
Hanno Böck add setup.py

Hanno Böck authored 4 years ago

14)     description="A free web vulnerability scanner",
15)     long_description=readme,
16)     long_description_content_type='text/markdown',
17)     url='https://freewvs.schokokeks.org/',
18)     packages=[],
19)     scripts=['freewvs', 'update-freewvsdb'],
20)     python_requires='>=3',
21)     license="CC0",
22)     keywords=['security', 'vulnerability', 'web'],
23)     classifiers=[
24)         'Development Status :: 4 - Beta',
25)         'Intended Audience :: System Administrators',
26)         'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
27)         'Natural Language :: English',
28)         'Programming Language :: Python :: 3',
29)         'Programming Language :: Python :: 3 :: Only',
30)         'Programming Language :: Python :: 3.7',
31)         'Programming Language :: Python :: 3.8',
Hanno Böck we support python 3.9 and d...

Hanno Böck authored 3 years ago

32)         'Programming Language :: Python :: 3.9',
Hanno Böck dont try to install freewvs...

Hanno Böck authored 3 years ago

33)     ]