forked from xmendez/wfuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 845 Bytes
/
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
import re
from setuptools import setup, find_packages
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('wfuzz/__init__.py').read(),
re.M
).group(1)
setup(
name = "wfuzz",
packages=find_packages(),
entry_points={
'console_scripts': [
'wfuzz = wfuzz.wfuzz:main',
'wfpayload = wfuzz.wfuzz:main_filter',
'wfencode = wfuzz.wfuzz:main_encoder',
],
'gui_scripts': [
'wxfuzz = wfuzz.wfuzz:main_gui',
]
},
version = version,
description = "Wfuzz - The web fuzzer",
long_description = long_descr,
author = "Xavi Mendez (@x4vi_mendez)",
url = "http://wfuzz.org",
install_requires=[
'pycurl',
'pyparsing',
],
)