-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (43 loc) · 1.2 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
[build-system]
requires = ["hatchling", "hatch-requirements-txt", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"
[project]
name = "imagediff"
dynamic = ["version"]
description = "A utility to compare folders of images."
readme = "README.md"
authors = [
{ name = "Greger Stolt Nilsen", email = "[email protected]" },
{ name = "Rikard Gillemyr", email = "[email protected]" }
]
license = { file ="LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
keywords = ["images", "utility"]
dependencies = [
"Pillow>=9.0.1", "PySide6>=6.3.2", "Click>=8.0.1"]
requires-python = ">=3"
[project.urls]
Homepage = "https://github.com/gregersn/Imagediff"
[project.scripts]
imagediff = "imagediff.gui:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["imagediff*"]
namespaces = false
[tool.pylint]
max-line-length=140
[tool.pylint."MESSAGE CONTROL"]
disable="missing-function-docstring,missing-class-docstring,invalid-name,too-few-public-methods"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.ruff]
line-length = 140