-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (80 loc) · 2.32 KB
/
pyproject.toml
File metadata and controls
90 lines (80 loc) · 2.32 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "exif-sorter"
version = "1.1.0"
description = "Organize photos, videos, and audio files by EXIF/ID3 creation date"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [{name = "David A. Macey", email = "davidamacey@gmail.com"}]
keywords = ["exif", "photos", "organize", "media", "sort", "videos", "images", "audio", "id3", "quicktime", "docker", "exiftool"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Graphics",
"Topic :: System :: Filesystems",
"Typing :: Typed",
]
dependencies = [
"PyExifTool>=0.5.6,<1.0",
"imohash>=1.1.0,<2.0",
"tqdm>=4.66.0,<5.0",
]
[project.scripts]
exif-sorter = "exif_sorter.cli:main"
[project.optional-dependencies]
dev = [
"build>=1.0.0",
"ipykernel>=6.0",
"jupyter>=1.0",
"mypy>=1.0",
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.8.0",
]
[project.urls]
Homepage = "https://github.com/davidamacey/exif-sorter"
Documentation = "https://github.com/davidamacey/exif-sorter#readme"
Repository = "https://github.com/davidamacey/exif-sorter"
Changelog = "https://github.com/davidamacey/exif-sorter/blob/main/CHANGELOG.md"
Issues = "https://github.com/davidamacey/exif-sorter/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 79
target-version = "py311"
src = ["src"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
]
ignore = [
"E501", # line too long (handled by formatter)
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"