From 1c1f5c1f392c679569443c20d358120b9a8ec3e5 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Sun, 14 Sep 2025 15:58:24 -0700 Subject: [PATCH] feat: add python-dotenv dependency for .env file support - Add python-dotenv>=0.19.0 to project dependencies - Enable automatic loading of environment variables from .env files - Support development and production environment configuration --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 2b39dbf..be1eb47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,6 +36,7 @@ dependencies = [ "pydantic>=1.8.0,<2.0.0", "jinja2>=3.0.0,<4.0.0", "python-multipart>=0.0.5", + "python-dotenv>=0.19.0", "pyyaml>=5.4.0", "validators>=0.18.0", ]