33 lines
736 B
TOML
33 lines
736 B
TOML
[build-system]
|
|
requires = [
|
|
"setuptools >= 65",
|
|
"setuptools_scm[toml]",
|
|
"wheel",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "imagetools"
|
|
description = "Collection of tools for organizing an image library."
|
|
dynamic = ["version"]
|
|
readme = "README.md"
|
|
license = { file = "LICENSE" }
|
|
authors = [
|
|
{ name = "phntxx", email = "bastian@phntxx.com" }
|
|
]
|
|
urls = { source = "git.phntxx.com/bastian/imagetools" }
|
|
scripts = { imagetools = "imagetools.__main__:app" }
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"flask>=3.1.0",
|
|
"flask-cors>=5.0.1",
|
|
"pillow>=11.1.0",
|
|
"pillow-heif>=0.22.0",
|
|
"pyexiftool>=0.5.6",
|
|
"typer>=0.15.2",
|
|
]
|
|
|
|
|
|
[tool.setuptools_scm]
|
|
write_to = "src/imagetools/_version.py"
|