-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 845 Bytes
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
[tool.poetry]
name = "gazetimation"
version = "0.2.3"
description = "Gaze estimation from facial landmarks"
authors = ["Shuvo Kumar Paul <shuvo.k.paul@gmail.com>"]
license = "MIT"
keywords = ["gaze", "gaze estimation", "head pose", "eye pose"]
readme = "README.md"
homepage = "https://github.com/paul-shuvo/gazetimation"
repository = "https://github.com/paul-shuvo/gazetimation"
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.6"
mediapipe = "*"
numpy = "*"
opencv-python = "*"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-mock = "^3.8.2"
black = "^22.6.0"
pytest-cov = "^3.0.0"
furo = "^2022.6.21"
sphinx-autobuild = "^2021.3.14"
sphinx-typo3-theme = "4.7.5"
flake8 = "^5.0.4"
Sphinx = "^5.1.1"
[tool.poetry.scripts]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"