mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-11 08:03:11 +00:00
Add install_requires for setuptools
This makes 'pip install' install everything that's needed for LinkChecker to actually work. Fixes #12.
This commit is contained in:
parent
821b661923
commit
81673ff1fc
1 changed files with 3 additions and 0 deletions
3
setup.py
3
setup.py
|
|
@ -479,6 +479,9 @@ args = dict(
|
|||
options = {
|
||||
},
|
||||
# Requirements, usable with setuptools or the new Python packaging module.
|
||||
install_requires = [
|
||||
'requests >= 2.2.0',
|
||||
],
|
||||
# Commented out since they are untested and not officially supported.
|
||||
# See also doc/install.txt for more detailed dependency documentation.
|
||||
#extra_requires = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue