mod: migrate to poetry and add django debug toolbar for dev

This commit is contained in:
2026-04-17 16:07:19 +03:00
parent d5719015b0
commit e7da2cdeb9
7 changed files with 472 additions and 38 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[tool.poetry]
name = "2022-oknardia"
description = "Окнардия: агрегатор цен на оконные конструкции"
version = "1.1.0"
authors = ["erjemin <erjemin@gmail.com>"]
readme = "README.md"
license = "MIT"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
Django = ">=5.2,<5.3"
django-environ = "^0.11.2"
Pillow = "^11.2.1"
requests = "^2.32.3"
pytils = "^0.4.4"
[tool.poetry.group.dev.dependencies]
django-debug-toolbar = "^6.3"
[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"