-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.33 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
[tool.poetry]
name = "flask-parental-control"
version = "0.0"
description = "Privacy-Aware Parental Control"
authors = ["WisamAbbasi <[email protected]>"]
repository = "https://github.com/sifis-home/flask-parental-control"
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-parental-control/data/*"]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
opencv-python = "^3.4.11.45"
cmake = "^3.22.5"
tensorflow = "^2.4.0"
numpy = "^1.21.0"
opencv-python-headless = "^3.4.11.45"
flask = "2.2.2"
Werkzeug = "2.3.7"
matplotlib = "3.3.4"
omegaconf = "2.2.2"
websocket-client = "1.6.1"
rel = "0.4.9"
requests = "2.28.2"
dlib = "^19.23.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