From 75d359aeb3f4580ac354fe0b2ba6af308a980fcf Mon Sep 17 00:00:00 2001 From: erjemin Date: Mon, 25 May 2026 10:37:22 +0300 Subject: [PATCH] add: django-environ --- poetry.lock | 18 +++++++++++++++++- pyproject.toml | 1 + 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 86a501e..6f6cbe8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -34,6 +34,22 @@ tzdata = {version = "*", markers = "sys_platform == \"win32\""} argon2 = ["argon2-cffi (>=23.1.0)"] bcrypt = ["bcrypt (>=4.1.1)"] +[[package]] +name = "django-environ" +version = "0.13.0" +description = "A package that allows you to utilize 12factor inspired environment variables to configure your Django application." +optional = false +python-versions = "<4,>=3.9" +files = [ + {file = "django_environ-0.13.0-py3-none-any.whl", hash = "sha256:37799d14cd78222c6fd8298e48bfe17965ff8e586091ad66a463e52e0e7b799e"}, + {file = "django_environ-0.13.0.tar.gz", hash = "sha256:6c401e4c219442c2c4588c2116d5292b5484a6f69163ed09cd41f3943bfb645f"}, +] + +[package.extras] +develop = ["coverage[toml] (>=5.0a4)", "furo (>=2024.8.6)", "pytest (>=4.6.11)", "setuptools (>=71.0.0)", "sphinx (>=5.0)", "sphinx-copybutton", "sphinx-notfound-page"] +docs = ["furo (>=2024.8.6)", "sphinx (>=5.0)", "sphinx-copybutton", "sphinx-notfound-page"] +testing = ["coverage[toml] (>=5.0a4)", "pytest (>=4.6.11)", "setuptools (>=71.0.0)"] + [[package]] name = "django-extensions" version = "3.2.3" @@ -91,4 +107,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "06444b282fcc06f39822dcb2a246056569448baa11d9c40e1c51b5208b98fc48" +content-hash = "7424447119e980f55d2bf47e9e97063dfbb9ae3230680cade5893701992c3e96" diff --git a/pyproject.toml b/pyproject.toml index 3ebf858..c304be0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,7 @@ packages = [ python = "^3.12" django = "^6.0" python-dotenv = "^1.0.0" +django-environ = "^0.13.0" [tool.poetry.group.dev.dependencies] django-extensions = "^3.2"