-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "vitallens"
authors = [
{name = "Philipp Rouast", email = "[email protected]"},
]
description = "Vital sign estimation from facial video"
readme = "README.md"
requires-python = ">=3.8"
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",
"numpy",
"onnxruntime",
"prpy[ffmpeg,numpy_min]>=0.2.17",
"python-dotenv",
"pyyaml",
"requests",
]
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]