initial commit

This commit is contained in:
Mandel WebGUI Bot
2026-06-16 00:12:03 +02:00
commit 1f76d85b2a
23 changed files with 710 additions and 0 deletions

30
pyproject.toml Normal file
View File

@@ -0,0 +1,30 @@
[tool.black]
target_version = ['py312']
exclude = '''
(
migrations/*
| w74_live_matrix_43/main.py
)
'''
[tool.ruff.lint.isort]
known-first-party = ["w74_live_matrix_43"]
section-order = [
"future",
"standard-library",
"third-party",
"wagtail",
"oscar",
"oscarapi",
"oscarextra",
"ocyan",
"first-party",
"local-folder"
]
[tool.ruff.lint.isort.sections]
wagtail = ["wagtail", "wagtail_*"]
oscar = ["oscar"]
oscarapi = ["oscarapi"]
oscarextra = ["oscar_*"]
ocyan = ["ocyan"]