From 9017f48371ecdb1408f793b0771d5f5f0fe04acf Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Wed, 28 Dec 2022 01:18:54 +0100 Subject: feat: Move to flask In my current setup flask is easier to deploy. FastAPI has not yet hit alpine repositories, and I don't want to maintain it myself. Also flask should be more than enough to handle those requests. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 07add82..7692d27 100644 --- a/setup.py +++ b/setup.py @@ -2,8 +2,7 @@ from setuptools import setup requirements = [ 'httpx==0.21.1', - 'fastapi==0.70.0', - 'uvicorn==0.15.0' + 'flask==2.2.2', ] -- cgit v1.2.3