Files
pyheic_struct/pyproject.toml
T

32 lines
726 B
TOML

[project]
name = "pyheic-struct"
version = "0.1.0"
description = "Low-level utilities for parsing and rebuilding HEIC/HEIF files, with Samsung-to-Apple motion photo conversion helpers."
authors = [
{ name = "Nymiro Yi", email = "dmwf994@dmwf994.com" }
]
license = { text = "MIT" }
readme = "docs/README.md"
requires-python = ">=3.10"
dependencies = [
"Pillow>=10.0.0",
"pillow-heif>=0.15.0",
"piexif>=1.1.3",
]
[project.optional-dependencies]
full = [
"exiftool-wrapper>=0.3.0",
]
[project.scripts]
pyheic-struct = "pyheic_struct.cli:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["pyheic_struct*"]