Skip to content

Commit

Permalink
Add requests as dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed May 1, 2021
1 parent ad64322 commit f122ac6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,16 @@

from setuptools import setup, find_packages

requires = ['itsdangerous', 'Jinja2', 'misaka>=2.0,<3.0', 'html5lib',
'werkzeug>=1.0', 'bleach', 'flask-caching>=1.9']
requires = [
"bleach",
"flask-caching>=1.9",
"html5lib",
"itsdangerous",
"Jinja2",
"misaka>=2.0,<3.0",
"requests>=2.25,<2.26",
"werkzeug>=1.0",
]

if sys.version_info < (3, ):
raise SystemExit("Python 2 is not supported.")
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ deps=
Jinja2
misaka>=2.0,<3.0
passlib==1.5.3
requests>=2.25,<2.26
werkzeug>=1.0

0 comments on commit f122ac6

Please sign in to comment.