add: django-environ

This commit is contained in:
2026-05-25 10:37:22 +03:00
parent 5b6c8a8ded
commit 75d359aeb3
2 changed files with 18 additions and 1 deletions

18
poetry.lock generated
View File

@@ -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"

View File

@@ -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"