22 lines
417 B
TOML
22 lines
417 B
TOML
|
|
[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"
|
||
|
|
|