-
Notifications
You must be signed in to change notification settings - Fork 934
/
setup.py
61 lines (59 loc) · 1.8 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python3
'''
Copyright (C) 2024, WAFW00F Developers.
See the LICENSE file for copying permission.
'''
import io
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
desc = f.read()
setup(
name='wafw00f',
version=__import__('wafw00f').__version__,
long_description=desc,
long_description_content_type='text/markdown',
author='Sandro Gauci',
author_email='sandro@enablesecurity.com',
license='BSD License',
url='https://github.com/enablesecurity/wafw00f',
project_urls={
"Bug Tracker": "https://github.com/EnableSecurity/wafw00f/issues",
"Documentation": "https://github.com/EnableSecurity/wafw00f/wiki",
"Source Code": "https://github.com/EnableSecurity/wafw00f/tree/master"
},
packages=find_packages(),
scripts=['wafw00f/bin/wafw00f'],
install_requires=[
'requests',
'requests[socks]',
'pluginbase'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Topic :: Internet',
'Topic :: Security',
'Topic :: System :: Networking :: Firewalls',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
],
keywords='waf firewall detector fingerprint',
extras_require={
'dev': [
'prospector'
],
'docs': [
'Sphinx'
]
},
entry_points={
'console_scripts': [
'wafw00f = wafw00f.main:main'
]
}
)