feat: initial commit

This commit is contained in:
2025-11-30 23:05:29 +01:00
commit 0000000094
18 changed files with 650 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[tool.ruff]
extend-exclude = ['venv', 'env']
[tool.ruff.lint]
select = [
'F', # pyflakes
'E', # pycodestyle
'W', # pycodestyle
'I', # isort
'UP', # pyupgrade
'B', # flake8-bugbear
'C', # flake8-comprehensions
'DTZ', # flake8-datetimez
'DJ', # flake8-django
'RUF', # ruff
'N', # pep8-naming
]
[tool.pytest.ini_options]
python_files = ['day_*.py']