-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (35 loc) · 1.18 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
[build-system]
requires = ["setuptools >= 59.6", "toml"]
build-backend = "setuptools.build_meta"
[project]
name = "exiv2"
description = "Python interface to libexiv2"
readme = "README.rst"
license = {text = "GNU GPL"}
authors = [
{name = "Jim Easterbrook", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Multimedia",
"Topic :: Multimedia :: Graphics",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/jim-easterbrook/python-exiv2"
Changelog = "https://github.com/jim-easterbrook/python-exiv2/blob/main/CHANGELOG.txt"
Documentation = "https://python-exiv2.readthedocs.io/"
[tool.setuptools]
platforms = ["POSIX", "MacOS", "Windows"]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "exiv2.__version__"}