diff --git a/poetry.lock b/poetry.lock index b1e60e2..0b33168 100644 --- a/poetry.lock +++ b/poetry.lock @@ -18,14 +18,14 @@ tests = ["pytest", "pytest-asyncio"] [[package]] name = "django" -version = "6.0.8" +version = "6.1" description = "A high-level Python web framework that encourages rapid development and clean, pragmatic design." category = "main" optional = false python-versions = ">=3.12" files = [ - {file = "django-6.0.8-py3-none-any.whl", hash = "sha256:9b98b7e1902e0e575ea4f42c175fc9512784f7f2580898286aee3388b322219d"}, - {file = "django-6.0.8.tar.gz", hash = "sha256:cb0bd962d27fc866f3c514b20aae6a7df56ec80b488f9899da46d675cd051526"}, + {file = "django-6.1-py3-none-any.whl", hash = "sha256:6c132cd980c9392b06807d4ca52d72530d631dc65a85d9dacede00a780cefbbe"}, + {file = "django-6.1.tar.gz", hash = "sha256:86a2aacd59b817e4d6ac2ebfe22356c58f66f7b24e503f71b7c2fead677ee48b"}, ] [package.dependencies] @@ -37,6 +37,22 @@ tzdata = {version = "*", markers = "sys_platform == \"win32\""} argon2 = ["argon2-cffi (>=23.1.0)"] bcrypt = ["bcrypt (>=4.1.1)"] +[[package]] +name = "django-debug-toolbar" +version = "7.0.0" +description = "A configurable set of panels that display various debug information about the current request/response." +category = "dev" +optional = false +python-versions = ">=3.10" +files = [ + {file = "django_debug_toolbar-7.0.0-py3-none-any.whl", hash = "sha256:656161388ce48384276342eeb16d532113ec670816fa1546cc3753730aa51b3d"}, + {file = "django_debug_toolbar-7.0.0.tar.gz", hash = "sha256:ef7494c5b459c149e87cc2da88d86e944064945e86bd7b2d879093586b5fefbf"}, +] + +[package.dependencies] +django = ">=5.2" +sqlparse = ">=0.2" + [[package]] name = "django-environ" version = "0.14.0" @@ -240,4 +256,4 @@ brotli = ["brotli"] [metadata] lock-version = "2.0" python-versions = "^3.14" -content-hash = "9d17c8311358813bc53621919be12f2de939e1227f2e92d8eaf2f6886a940533" +content-hash = "b9c94317c0624ff0156fd9db6187c2a709b4c0ad5cce5424a745a5091e3816ad" diff --git a/pyproject.toml b/pyproject.toml index 11b71ad..a0c7f0f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,14 @@ [tool.poetry] name = "hypn0" version = "0.1.0" -description = "Гипонтические SVG" +description = "hypn0 - Гипонтические SVG" authors = ["erjemin "] +license = "MIT" readme = "README.md" +packages = [ + { include = "hypn0", from = "hypn0" }, +# { include = "hypn0-site", from = "hypn0" }, +] [tool.poetry.dependencies] python = "^3.14" @@ -13,6 +18,8 @@ django-environ = "^0.14.0" gunicorn = "^26.0.0" whitenoise = "^6.12.0" +[tool.poetry.group.dev.dependencies] +django-debug-toolbar = "^7.0" [build-system] requires = ["poetry-core"]