-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.48 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["flit_core>=3.8,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "apple-hdr-heic"
version = "0.1.0"
authors = [
{ name="John Charankattu", email="[email protected]" },
]
description = "A library/tool to decode images in HEIC/HEIF format taken on Apple devices that contain HDR gain map."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
]
dependencies = [
"colour-science>=0.4.5",
"numpy>=1.24.0",
"opencv-python-headless>=4.0",
"openexr>=3.3.2,<4.0",
"pillow_heif>=0.20.0",
"PyExifTool>=0.5.6",
]
keywords = ["heic", "heif", "converter", "decoder", "HDR", "HDR Gain Map", "iPhone", "EXR"]
[project.scripts]
apple-hdr-heic-decoder = "apple_hdr_heic.decoder:main"
[project.urls]
Homepage = "https://github.com/johncf/apple-hdr-heic"
[tool.ruff]
line-length = 120
[tool.mypy]
python_version = "3.10"
[[tool.mypy.overrides]]
module = [
"exiftool",
"OpenEXR",
"pillow_heif",
]
ignore_missing_imports = true
[tool.uv]
# disable cache for easier development
reinstall-package = ["apple-hdr-heic"]
[tool.flit.sdist]
include = [
"src",
"pyproject.toml",
"LICENSE",
"README.md",
]
exclude = [
".gitattributes",
".gitignore",
".github",
"noxfile.py",
"tests",
]