-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (35 loc) · 900 Bytes
/
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
[tool.poetry]
name = "common-image-tools"
version = "0.3.3"
description = ""
authors = ["Federico Lanzani <federico@federicolanzani.com>"]
readme = "README.md"
packages = [{ include = "common_image_tools" }]
[tool.poetry.dependencies]
python = "^3.10"
pillow = ">=9.5.0"
opencv-python = "^4.8.0.0"
color-transfer = "^0.1"
scikit-image = "^0.21.0"
loguru = "^0.7.0"
dlib = { version = "19.24.2", optional = true }
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
matplotlib = "^3.7.2"
pytest = "^8.2.0"
pytest-cov = "^5.0.0"
coverage = "^7.6.0"
genbadge = { extras = ["coverage"], version = "^1.1.1" }
mypy = "^1.9.0"
pre-commit = "^3.8.0"
ruff = "^0.4.0"
[tool.poetry.extras]
dlib = ["dlib"]
[tool.ruff]
line-length = 120
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"tests/*" = ["F841"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"