-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.14 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
[build-system]
requires = [
"setuptools>=65.5.1",
"setuptools-scm"
]
build-backend = "setuptools.build_meta"
[project]
name = "vitallens"
authors = [
{name = "Philipp Rouast", email = "philipp@rouast.com"},
]
description = "Vital sign estimation from facial video"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["python", "rppg", "vital signs monitoring", "heart rate", "pulse", "respiration"]
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
]
dependencies = [
"importlib_resources>=5.12",
"numpy>=1.24",
"onnxruntime>=1.15.0",
"prpy[ffmpeg,numpy_min]>=0.3.13",
"python-dotenv>=1.0",
"pyyaml>=6.0.1",
"requests>=2.32.0",
"vitallens-core==0.2.3",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest", "flake8"]
[project.urls]
Repository = "https://github.com/Rouast-Labs/vitallens-python.git"
Issues = "https://github.com/Rouast-Labs/vitallens-python/issues"
[tool.setuptools]
packages = ["vitallens"]
[tool.setuptools_scm]