format code

This commit is contained in:
2025-01-20 11:13:36 +01:00
parent 430878b41f
commit c276ab587b
37 changed files with 508 additions and 290 deletions

View File

@@ -1,7 +1,7 @@
[project]
name = "librarysystem"
version = "0.2.3"
description = "Add your description here"
description = "A library system for loaning books and managing the users."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
@@ -23,4 +23,17 @@ dev = [
"bump-my-version>=0.29.0",
"icecream>=2.1.4",
"nuitka>=2.5.9",
"ruff>=0.9.2",
]
[tool.ruff]
exclude = [
"dist",
".git",
".vscode",
]
indent-width = 4
include = ["pyproject.toml", "src/**/*.py", "scripts/**/*.py","tests/**/*.py"]
[tool.ruff.lint]
fixable = ["ALL"]