add skeleton for dnscms

This commit is contained in:
2024-05-07 01:41:37 +02:00
parent bd5e205ab0
commit 86b6d77bf1
49 changed files with 2158 additions and 0 deletions

27
dnscms/pyproject.toml Normal file
View File

@ -0,0 +1,27 @@
[tool.poetry]
name = "dnscms"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
wagtail = "^6.0.1"
django = "^5.0.4"
wagtail-grapple = "^0.25.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.4"
[tool.ruff]
line-length = 99
[tool.ruff.lint]
select = ["F", "E", "W", "Q", "UP", "DJ"]
ignore = []
exclude = ["**/migrations/*.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"