diff options
author | Linnnus <[email protected]> | 2024-04-27 20:20:31 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-04-27 20:23:00 +0200 |
commit | f1131bfc8cc3e80900eb349d656e269d7682d2ae (patch) | |
tree | ac7d518677eeb99b4558bc3791dc49ceb15873eb | |
parent | 22d80f90b6b60b6a40a30b772716b950239b539b (diff) |
fix: Add missing dependencies
Previous commits rely on added dependencies, but these were not added to
the list of requirements. The dependencies in question:
- bottle_sqlite
- python-dotenv
fixup: 110e05bad2c378473954e41231d7581754c8cc8f
fixup: 0cb2a367968ea0bc45739da5c88fd7b88ca281a7
-rw-r--r-- | requirements.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt index 1544077..06829c0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ bottle==0.12.25 +bottle-sqlite==0.2.0 certifi==2024.2.2 charset-normalizer==3.3.2 gunicorn==21.2.0 @@ -7,6 +8,7 @@ Jinja2==3.1.3 MarkupSafe==2.1.5 oauthlib==3.2.2 packaging==24.0 +python-dotenv==1.0.1 requests==2.31.0 requests-oauthlib==2.0.0 urllib3==2.2.1 |