initial commit

This commit is contained in:
Mandel Dashboard
2026-02-17 23:45:51 +01:00
commit 5acbf4d1f1
23 changed files with 530 additions and 0 deletions

30
pyproject.toml Normal file
View File

@@ -0,0 +1,30 @@
[tool.black]
target_version = ['py36']
exclude = '''
(
migrations/*
| smokee2eh1771368349/main.py
)
'''
[tool.ruff.lint.isort]
known-first-party = ["smokee2eh1771368349"]
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"]