25 lines
451 B
TOML
25 lines
451 B
TOML
[tool.poetry]
|
|
name = "tagger"
|
|
version = "1.0.4"
|
|
description = "Universal file tagging utility"
|
|
authors = ["Jan Doubravský <jan.doubravsky@gmail.com>"]
|
|
readme = "README.md"
|
|
package-mode = false
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
pillow = "^12.0.0"
|
|
requests = "^2.32.5"
|
|
beautifulsoup4 = "^4.14.3"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^9.0.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|