mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-23 07:34:44 +00:00
Reinstate separate lines for install_requires in setup.py
This commit is contained in:
parent
e3edd90f65
commit
7281dc5cdd
1 changed files with 6 additions and 1 deletions
7
setup.py
7
setup.py
|
|
@ -376,7 +376,12 @@ setup(
|
|||
options={},
|
||||
# Requirements, usable with setuptools or the new Python packaging module.
|
||||
python_requires=">= 3.5",
|
||||
install_requires=["requests >= 2.4", "dnspython", "beautifulsoup4", "pyxdg"],
|
||||
install_requires=[
|
||||
"requests >= 2.4",
|
||||
"dnspython",
|
||||
"beautifulsoup4",
|
||||
"pyxdg",
|
||||
],
|
||||
# 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