-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
72 lines (67 loc) · 1.77 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
63
64
65
66
67
68
69
70
71
72
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61"]
[project]
name = "touchless"
version = "0.0.1"
description = "A Python library for building spatial interfaces using gestures, eye tracking, and voice commands."
authors = [
{name = "Mikhail Rozhkov", email = "[email protected]"},
{name = "Alex Kolosov", email = "[email protected]"}
]
license = { text = "Apache License 2.0" }
readme = "README.md"
keywords = ["touchless", "spatial-ui", "gesture-control", "eye-tracking", "voice-commands"]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"absl-py==2.1.0",
"attrs==23.2.0",
"cycler==0.12.1",
"fonttools==4.47.2",
"jupyter==1.0.0",
"kiwisolver==1.4.5",
"matplotlib==3.8.2",
"mediapipe==0.10.11",
"numpy==1.26.3",
"opencv-python==4.9.0.80",
"opencv-contrib-python==4.9.0.80",
"packaging==23.2",
"Pillow==10.2.0",
"pandas==2.2.1",
"pydantic==2.6.1",
"pyparsing==3.1.1",
"python-dateutil==2.8.2",
"six==1.16.0"
]
[project.optional-dependencies]
lint = [
"mypy==1.8.0",
"pandas-stubs",
"types-colorama",
"types-psutil",
"types-pyinstaller",
"types-requests",
"types-tabulate",
"types-toml",
"types-tqdm",
"typing-extensions",
]
tests = [
"pytest>=8,<9",
"pytest-cov>=4.1.0",
"pytest-test-utils",
]
[project.urls]
Homepage = "https://github.com/mlrepa/touchless"
Repository = "https://github.com/mlrepa/touchless"
Documentation = "http://example.com/docs"
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
include = ["touchless*"]