-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (84 loc) · 2.58 KB
/
pyproject.toml
File metadata and controls
90 lines (84 loc) · 2.58 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyeyesweb"
version = "1.0.1"
requires-python = ">=3.8"
authors = [
{name = "InfoMus Lab - Casa Paganini", email = "cp.infomus@gmail.com"}
]
maintainers = [
{name = "Nicola Corbellini", email = "nicola.corbellini@edu.unige.it"},
{name = "Gabriele Romano", email = "gabriele.romano@edu.unige.it"},
{name = "Sanket Rajeev Sabharwal", email = "sabharwal@edu.unige.it"},
{name = "Simone Ghisio", email = "simoneghisio@gmail.com"},
{name = "Paolo Coletta", email = "paolocoletta@gmail.com"}
]
description = """PyEyesWeb is a research toolkit for extracting quantitative features from human movement data.
It offers computational methods to analyze different expressive qualities of movement."""
readme = "README.md"
license = "MIT"
license-files = [".github/LICENSE"]
keywords = [
"movement analysis",
"human movement",
"motor control",
"biomechanics",
"kinematics",
"time series",
"synchronization",
"computational movement",
"quantitative movement"
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.24.0",
"scipy>=1.10.0",
"scikit-learn>=1.3.0",
"tqdm>=4.6"
]
[project.optional-dependencies]
dev = [
"build>=1.0.0",
"mediapipe>=0.10.0",
"opencv-python>=4.8.0",
"matplotlib>=3.7.0",
"pandas>=2.0.0",
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
"setuptools>=61.0",
"wheel>=0.40.0",
"mkdocs>=1.5.0",
"mkdocstrings>=0.30.0",
"mkdocstrings-python>=1.10.0",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.0",
"mkdocs-section-index>=0.3.0",
"mkdocs-macros-plugin>=1.5.0"
]
[project.urls]
Documentation = "https://infomuscp.github.io/PyEyesWeb/"
"Casa Paganini" = "http://www.casapaganini.org/index_eng.php"
"Resilence EU Project" = "https://resilence.eu/"
[tool.setuptools]
[tool.setuptools.packages.find]
where = ["."]
[tool.pytest.ini_options]
pythonpath = [
"."
]