-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 766 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 766 Bytes
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
[project]
name = "imgvid-compress"
version = "0.1.0"
description = "Convert images to AVIF format with folder structure preservation"
requires-python = ">=3.9"
dependencies = [
"pillow>=10.0.0",
"pillow-avif-plugin>=1.4.0",
"pillow-heif>=0.13.0",
"rich>=13.7.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[dependency-groups]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pre-commit>=4.0.1",
"radon>=6.0.1",
"ruff>=0.8.0",
"xenon>=0.9.3",
]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"B",
"C90",
]
ignore = ["E501"]
[tool.ruff.lint.mccabe]
max-complexity = 20