-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
138 lines (126 loc) · 2.65 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[build-system]
requires = ["setuptools", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "rhinopics"
dynamic = ["version"]
dependencies = [
"click==8.1.7",
"click-pathlib==2020.3.13.0",
"exifread",
"ffmpeg-python==0.2.0",
"python-dateutil==2.9.0",
"tqdm==4.66.4",
]
requires-python = ">= 3.8"
authors = [
{name = "Axel Fahy", email = "[email protected]"},
]
maintainers = [
{name = "Axel Fahy", email = "[email protected]"},
]
description = "Rhinopics, let the fat unicorn rename yours pics!"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["pictures", "photos", "renaming"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/axelfahy/rhinopics"
Repository = "https://github.com/axelfahy/rhinopics"
Issues = "https://github.com/axelfahy/rhinopics/issues"
Changelog = "https://github.com/axelfahy/rhinopics/CHANGELOG.md"
[project.scripts]
rhinopics = "rhinopics.__main__:main"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "rhinopics/_version.py"
versionfile_build = "rhinopics/_version.py"
tag_prefix = "v"
parentdir_prefix = "rhinopics-"
[tool.ruff]
line-length = 88
indent-width = 4
[tool.ruff.lint]
unfixable = []
select = [
# pyflakes
"F",
# pycodestyle
"E", "W",
# flake8-2020
"YTT",
# flake8-bugbear
"B",
# flake8-quotes
"Q",
# flake8-debugger
"T10",
# flake8-gettext
"INT",
# pylint
"PL",
# flake8-pytest-style
"PT",
# misc lints
"PIE",
# flake8-pyi
"PYI",
# tidy imports
"TID",
# implicit string concatenation
"ISC",
# type-checking imports
"TCH",
# comprehensions
"C4",
# pygrep-hooks
"PGH",
# Ruff-specific rules
"RUF",
# flake8-bandit: exec-builtin
"S102",
# numpy-legacy-random
"NPY002",
# Perflint
"PERF",
# flynt
"FLY",
# flake8-future-annotations
"FA",
# unconventional-import-alias
"ICN001",
# flake8-slots
"SLOT",
# flake8-raise
"RSE"
]
ignore = [
### Intentionally disabled
# module level import not at top of file
"E402",
# The following rules may cause conflicts when used with the formatter:
"ISC001",
]
exclude = [
".eggs/*.py",
"env",
"versioneer.py",
"rhinopics/_version.py",
]
[tool.ruff.lint.pylint]
max-args = 6
[tool.mypy]
ignore_missing_imports = true