37 lines
751 B
TOML
37 lines
751 B
TOML
[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"
|