35 lines
667 B
TOML
35 lines
667 B
TOML
[project]
|
|
name = "dnscms"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [{ name = "EDB", email = "edb@neuf.no" }]
|
|
requires-python = ">=3.12, <3.13"
|
|
readme = "README.md"
|
|
dependencies = [
|
|
"wagtail>=6.1.3,<7",
|
|
"django>=5.0.7,<6",
|
|
"wagtail-grapple>=0.26.0,<0.27",
|
|
"psycopg2-binary>=2.9.10,<3",
|
|
"django-extensions>=3.2.3,<4",
|
|
"whitenoise>=6.7.0,<7",
|
|
"gunicorn>=23.0.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = ["ruff"]
|
|
|
|
[tool.uv]
|
|
package = false
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.ruff]
|
|
line-length = 99
|
|
|
|
[tool.ruff.lint]
|
|
select = ["F", "E", "W", "Q", "UP", "DJ"]
|
|
ignore = []
|
|
exclude = ["**/migrations/*.py"]
|