initial commit

This commit is contained in:
2026-08-07 20:30:33 +05:30
commit 42fa1a8dfe
12 changed files with 472 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
[project]
name = "exhibittool"
version = "0.1.0"
description = "Generate a front page for all exhibits"
authors = [
{name = "Alexander Rossmanith", email = "exhibittool@alexander-rossmanith.de"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"odfpy (>=1.4.1,<2.0.0)"
]
[tool.poetry]
package-mode = false
packages = [{include = "exhibittool", from = "src"}]
[tool.poetry.group.dev.dependencies]
flake8 = "^7.3.0"
ruff = "^0.14.2"
[tool.flake8]
max-line-length = 99
[tool.ruff]
line-length = 99
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
docstring-code-line-length = 79
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"