From 2bf16aae1195f3e1af3922d6a1868ddf29aa3361 Mon Sep 17 00:00:00 2001 From: missytake Date: Sat, 18 Mar 2023 13:19:12 +0100 Subject: [PATCH] [tests] Fix tox ImportError --- CONTRIBUTING.md | 4 ++++ setup.py | 1 + 2 files changed, 5 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 35540aa..c85b86c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -140,6 +140,8 @@ development team. - `model.py` - `webapi.py` 2. Import your bot in `kibicara/webapi/__init__.py`. +3. Generate the FastAPI stuff +4. Generate the angular components for the kibicara-frontend from the FastAPI stuff ### Explanation @@ -202,3 +204,5 @@ A bot should have at least this functionality: - e.g. Twitter via posts or retweets - e.g. Telegram via direct message from the bot - e.g. E-Mail via e-mail to the user's address + +- Web Interface (hood admins) diff --git a/setup.py b/setup.py index 38b6758..ac155b3 100644 --- a/setup.py +++ b/setup.py @@ -29,5 +29,6 @@ setup( 'pytoml', 'requests', 'scrypt', + 'httpx', ], )