Skip to content

Commit

Permalink
unpinned libs in setup.py. added requirements with my current set up
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed Nov 9, 2018
1 parent 772c200 commit dacdb37
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,10 @@ docs:

coverage:
coverage report --skip-covered --include "*python3.5/site-packages/wfuzz*" -m

install:
pip install -r requirements.txt

freeze:
pip-compile --output-file requirements.txt setup.py

12 changes: 12 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file requirements.txt setup.py
#
chardet==3.0.4
configparser==3.5.0
future==0.17.1
pycurl==7.43.0.2
pyparsing==2.3.0
six==1.11.0
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@
dev_requires = [
'mock',
'netaddr',
'pip-tools',
]

install_requires = [
'pycurl>=7.43.0.1',
'pyparsing>=2.2.0',
'future>=0.16.0',
'six>=1.10.0',
'configparser>=3.5.0',
'pycurl',
'pyparsing',
'future',
'six',
'configparser',
'chardet',
]

Expand Down

0 comments on commit dacdb37

Please sign in to comment.