From 56d4c697a11964f730608c5c4d87689014539ea3 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Fri, 17 May 2024 18:04:36 +0200 Subject: [PATCH] chore: add sentry dependency --- README.md | 5 +---- requirements.txt | 2 ++ 2 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index c866121..f929d67 100644 --- a/README.md +++ b/README.md @@ -40,10 +40,7 @@ Additional features are: $ . .venv/bin/activate # install wheel: - (.venv)$ pip install wheel - - # install gunicorn & flask: - (.venv)$ pip install flask + (.venv)$ python -m pip install -r requirements.txt # rejoice! ``` diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..78bef69 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +flask +sentry-sdk[flask]