Spaces:
Sleeping
Sleeping
File size: 1,083 Bytes
2eba0cc | 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 | [project]
name = "l2cs"
version = "0.0.1"
description = "The official PyTorch implementation of L2CS-Net for gaze estimation and tracking"
authors = [
{name = "Ahmed Abderlrahman"},
{name = "Thorsten Hempel"}
]
license = {file = "LICENSE.txt"}
readme = "README.md"
requires-python = ">3.6"
keywords = ["gaze", "estimation", "eye-tracking", "deep-learning", "pytorch"]
classifiers = [
"Programming Language :: Python :: 3"
]
dependencies = [
'matplotlib>=3.3.4',
'numpy>=1.19.5',
'opencv-python>=4.5.5',
'pandas>=1.1.5',
'Pillow>=8.4.0',
'scipy>=1.5.4',
'torch>=1.10.1',
'torchvision>=0.11.2',
'face_detection@git+https://github.com/elliottzheng/face-detection'
]
[project.urls]
homepath = "https://github.com/Ahmednull/L2CS-Net"
repository = "https://github.com/Ahmednull/L2CS-Net"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
# https://setuptools.pypa.io/en/stable/userguide/datafiles.html
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
|