32 lines
721 B
TOML
32 lines
721 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 = "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.5.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*"]
|