From 9737ac36fda44442838ae93dfc27d62bb16697c5 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Fri, 2 Feb 2024 07:39:11 -0800 Subject: [PATCH] (fix) ui - include UI deps in pyproject.toml --- pyproject.toml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e57dc2d327..e5d88a02d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,9 @@ rq = {version = "*", optional = true} orjson = {version = "^3.9.7", optional = true} apscheduler = {version = "^3.10.4", optional = true} streamlit = {version = "^1.29.0", optional = true} +fastapi-sso = { version = "^0.10.0", optional = true } +PyJWT = { version = "^2.8.0", optional = true } +python-multipart = { version = "^0.0.6", optional = true } [tool.poetry.extras] proxy = [ @@ -37,7 +40,10 @@ proxy = [ "pyyaml", "rq", "orjson", - "apscheduler" + "apscheduler", + "fastapi-sso", + "PyJWT", + "python-multipart", ] extra_proxy = [ @@ -45,7 +51,6 @@ extra_proxy = [ "azure-identity", "azure-keyvault-secrets", "google-cloud-kms", - "streamlit", "resend" ]