-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 923 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 923 Bytes
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[project]
authors = [{ name = "Samuel Pröll", email = "info@samproell.at" }]
description = "Yet another implementation of remote Photoplethysmography in Python"
dynamic = ["version"]
dependencies = [
"hydra-core",
"mediapipe",
"numpy",
"opencv-contrib-python",
"pandas",
"scipy",
]
license = { file = "LICENSE" }
name = "yarppg"
readme = "README.md"
[project.optional-dependencies]
qt6 = ["PyQt6", "pyqtgraph"]
dev = [
"mkdocs-autorefs",
"mkdocs-jupyter",
"mkdocs-material",
"mkdocs-section-index",
"mkdocs",
"mkdocstrings[python]",
"pytest",
]
[project.urls]
repository = "https://github.com/SamProell/yarppg"
[project.scripts]
run-yarppg = "yarppg.main:run_yarppg"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "yarppg.__version__" }