-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.cfg
66 lines (64 loc) · 1.81 KB
/
setup.cfg
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
[metadata]
name = pillow_heif
description = Python interface for libheif library
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/bigcat88/pillow_heif
author = Alexander Piskun
author_email = [email protected]
keywords = heif, heic, avif, pillow
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Software Development
Topic :: Software Development :: Libraries
Topic :: Multimedia :: Graphics
Topic :: Multimedia :: Graphics :: Graphics Conversion
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
license = BSD-3-Clause
project_urls =
Documentation=https://pillow-heif.readthedocs.io
Source=https://github.com/bigcat88/pillow_heif
Changelog=https://github.com/bigcat88/pillow_heif/blob/master/CHANGELOG.md
[options]
python_requires = >=3.9
zip_safe = False
packages = find:
install_requires =
pillow>=10.1.0
[options.extras_require]
docs =
sphinx>=4.4
sphinx-issues>=3.0.1
sphinx-rtd-theme>=1.0
tests-min =
pytest
defusedxml
packaging
tests =
pytest
defusedxml
packaging
numpy
pympler
dev =
pytest
defusedxml
packaging
numpy
pympler
opencv-python==4.10.0.84
pre-commit
pylint
coverage