forked from EnableSecurity/wafw00f
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (47 loc) · 1.43 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='wafw00f',
version=__import__('wafw00f').__version__,
description=('WAFW00F identifies and fingerprints '
'Web Application Firewall (WAF) products.'),
author='sandrogauci',
author_email='sandro@enablesecurity.com',
license='BSD License',
url='https://github.com/sandrogauci/wafw00f',
packages=find_packages(),
scripts=['wafw00f/bin/wafw00f'],
install_requires=[
'beautifulsoup4==4.6.0',
'pluginbase==0.7',
'html5lib==1.0.1'
],
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',
],
keywords='waf firewall detector fingerprint',
extras_require={
'dev': [
'prospector==0.10.1',
],
'test': [
'httpretty==0.8.10',
'coverage==3.7.1',
'coveralls==0.5',
'python-coveralls==2.5.0',
'nose==1.3.6',
],
'docs': [
'Sphinx==1.3.1',
],
},
test_suite='nose.collector',
)