-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy pathpyproject.toml
77 lines (59 loc) · 1.59 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
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools >= 68.0.0", "wheel >= 0.41.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ExifRead"
description = "Library to extract Exif information from digital camera image files."
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">= 3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
]
keywords = ["exif", "image", "metadata", "photo"]
authors = [
{name = "Ianaré Sévi"},
]
dependencies = []
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pre-commit~=2.21",
"pylint~=3.0",
"build~=1.0",
]
test = [
"pytest~=7.4",
]
[project.urls]
Repository = "https://github.com/ianare/exif-py"
Changelog = "https://github.com/ianare/exif-py/blob/master/ChangeLog.rst"
[project.scripts]
"EXIF.py" = "exifread.cli:main"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = {attr = "exifread.__version__"}
[tool.setuptools.package-data]
"exifread" = ["py.typed"]
[tool.isort]
profile = "black"
[tool.mypy]
disallow_any_unimported = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
strict_equality = true
warn_no_return = true
warn_return_any = true
warn_unused_ignores = true
warn_unreachable = true