Skip to content

Commit dba9a76

Browse files
committed
Bumped setup.py
1 parent dd2ba71 commit dba9a76

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

fuzzy/fuzzy.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@
44
import time
55
import logging
66
from datetime import datetime
7-
from pwn import log
7+
try:
8+
from pwn import log
9+
except:
10+
print("You should install python3-pwntools log module !")
11+
print(">apt-get update")
12+
print(">apt-get install python3 python3-dev python3-pip git")
13+
print(">pip3 install --upgrade git+https://github.com/arthaud/python3-pwntools.git")
14+
exit()
815
from .request import Request
916
from .utils import replace_kv_dict
1017
from .matching import Matching

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@
88
'fuzzy = fuzzy.__main__:main',
99
]
1010
},
11-
version = '0.0.6',
11+
version = '0.0.11',
1212
description = "Fuzzy - An other web fuzzer",
1313
long_description = "It is used to test website URLs with a wordlist.",
1414
author = "SakiiR SakiiR (@SakiiR)",
1515
url = "https://github.com/SakiiR/fuzzy",
1616
install_requires=[
1717
'aiohttp',
1818
'colored',
19-
'git+https://github.com/arthaud/python3-pwntools.git'
2019
],
20+
dependency_links=[
21+
"git+https://github.com/arthaud/[email protected]#egg=pwntools-2.2.0"
22+
]
2123
)

0 commit comments

Comments
 (0)