Files
q-tools/py-packages/imagelist2/pyproject.toml
2025-05-16 23:18:17 +03:00

35 lines
930 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "imagelist2"
dynamic = ["version"]
description = 'Maintains a list of images sqlite file'
requires-python = ">=3.8"
license = "MIT"
keywords = []
authors = [
{ name = "Q", email = "q@six9.net" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["PyTurboJPEG", "Pillow", "ImageHash", "numpy", "tqdm", "sqlite-vec", "tabulate"]
[project.scripts]
image-list = "imagelist2:main"
[tool.hatch.version]
path = "imagelist2/__init__.py"