39 lines
783 B
TOML
39 lines
783 B
TOML
[project]
|
|
name = "librarysystem"
|
|
version = "0.2.3"
|
|
description = "A library system for loaning books and managing the users."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"beautifulsoup4>=4.12.3",
|
|
"loguru>=0.7.3",
|
|
"mkdocs>=1.6.1",
|
|
"mkdocs-material>=9.5.49",
|
|
"mkdocs-material-extensions>=1.3.1",
|
|
"omegaconf>=2.3.0",
|
|
"prettytable>=3.12.0",
|
|
"pyqt6>=6.8.0",
|
|
"requests>=2.32.3",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"bump-my-version>=0.29.0",
|
|
"icecream>=2.1.4",
|
|
"nuitka>=2.5.9",
|
|
"python-dotenv>=1.0.1",
|
|
"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"]
|