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
|
[build-system]
requires = [
"setuptools",
"setuptools-scm"
]
build-backend = "setuptools.build_meta"
[project]
name = "argaze"
authors = [
{"name" = "ACHIL laboratory at Ecole Nationale de l'Aviation Civile (ENAC)", "email" = "argaze-contact@recherche.enac.fr"}
]
description = "An Open and Flexible Software Library for Gaze Analysis and Interaction."
readme= {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.11"
keywords=[
"eye tracking",
"gaze analysis",
"real-time",
"modular"
]
license = {file = "LICENSE"}
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"opencv-python>=4.10.0",
"opencv-contrib-python>=4.10.0",
"numpy",
"pandas",
"av",
"colorama",
"matplotlib",
"shapely",
"lempel_ziv_complexity",
"scipy",
"scikit-learn"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://gitpub.recherche.enac.fr/argaze"
Documentation = "http://achil.recherche.enac.fr/features/eye/argaze/index.html"
Repository = "https://gitpub.recherche.enac.fr/argaze"
Issues = "https://git.recherche.enac.fr/projects/argaze/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools_scm]
|