-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (57 loc) · 1.41 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
[tool.poetry]
name = "flask-private-deepface"
version = "0.0"
description = "Privacy-Aware Face Recognition"
authors = ["WisamAbbasi <[email protected]>"]
repository = "https://github.com/sifis-home/flask-private-deepface"
license = "MIT"
classifiers = [
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
]
include = ["README.md", "LICENSE.md", "flask-private-deepface/data/*"]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
opencv-python = "^4.7.0.72"
opencv-python-headless = "^4.7.0.72"
opencv-contrib-python = "^4.7.0.72"
numpy = "1.24.3"
flask = "^2.2.2"
websocket-client = "1.6.1"
rel = "0.4.9"
requests = "2.28.2"
dlib = "^19.24.0"
pandas = "^1.5.3"
gdown = "^4.7.0"
tqdm = "^4.65.0"
Pillow = "^9.5.0"
keras = "^2.12.0"
tensorflow-io-gcs-filesystem = "^0.24.0"
tensorflow = "^2.8.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.1"
pre-commit = "^3.0.4"
black = "^23.1.0"
isort = "^5.12.0"
ruff = "^0.0.63"
coverage = {extras = ["toml"], version = "^7.1.0"}
[build-system]
requires = ["poetry-core>=1.0.0", "pip>=22.1.2"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
[tool.ruff]
line-length = 79
select = [
"F401",
"F403",
]
[tool.coverage.run]
omit = [".*", "*/site-packages/*"]
[tool.coverage.report]
fail_under = 60