Poetry initialization

This commit is contained in:
2025-11-20 14:02:14 +01:00
parent a227f25971
commit d3137f5e88
3 changed files with 227 additions and 1 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[project]
name = "tagger"
version = "1.0.2"
description = "File tagging utility"
authors = [
{name = "Jan Doubravský",email = "jan.doubravsky@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"pillow (>=12.0.0,<13.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.1"