-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.3 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
[tool.poetry]
name = "average-facer"
version = "0.7.6"
description = "Face averaging in Python made simple."
authors = ["John William Ruth Miller <john.w.millr@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/johnwmillr/Facer"
repository = "https://github.com/johnwmillr/Facer"
keywords = [
"opencv",
"image-processing",
"face-detection",
"dlib",
"face-average",
"facer",
"face-averaging",
"average-facer",
]
packages = [{ include = "facer" }]
[tool.poetry.dependencies]
python = "^3.10"
opencv-python = "^4"
dlib = "^19"
matplotlib = "^3"
ffmpeg-python = "^0.2"
tqdm = "^4"
[tool.poetry.group.dev.dependencies]
black = ">=23,<27"
jupyterlab = "^4.3.0"
mypy = "^1.13.0"
flake8 = "^7.1.0"
pytest = ">=8.3,<10.0"
[tool.mypy]
# Specify the target platform details in config, so your developers are
# free to run mypy on Windows, Linux, or macOS and get consistent
# results.
python_version = "3.10"
strict = true
disable_error_code = "no-redef"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Blog Post" = "https://www.johnwmillr.com/average-faces-in-python/"
"Faces of Fortune" = "https://www.johnwmillr.com/faces-of-fortune/"
"PyPI" = "https://pypi.org/project/average-facer/"