-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (48 loc) · 1.62 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
[tool.poetry]
name = "myogestic"
version = "0.1.0"
description = ""
authors = [
"Raul C. Sîmpetru <raul.simpetru@fau.de>",
"Dominik I. Braun <dome.braun@fau.de>",
"Vlad Cnejevici <vlad.cnejevici@fau.de>",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
qdarkstyle = "^3.2.3"
poethepoet = "^0.27.0"
catboost = "^1.2.5"
scikit-learn = "^1.5.1"
toml = "^0.10.2"
biosignal-device-interface = "^0.1.0"
doc-octopy = {git = "https://github.com/NsquaredLab/DocOctopy.git"}
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
matplotlib = "^3.9.0"
black = "^24.8.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^7.4.6"
rinohtype = "^0.5.5"
furo = "^2024.7.18"
sphinx-gallery = "^0.16.0"
enum-tools = {extras = ["sphinx"], version = "^0.12.0"}
sphinxcontrib-youtube = "^1.4.1"
sphinxcontrib-pdfembed = {git = "https://github.com/SuperKogito/sphinxcontrib-pdfembed.git"}
[tool.poetry.group.compile]
optional = true
[tool.poetry.group.compile.dependencies]
pyinstaller = "^6.9.0"
distributed = "^2024.7.1"
[tool.poe.tasks]
_install_poetry_with_dev = "poetry install --with dev"
_run_submodule_update = "git submodule update --init --recursive"
_run_remove_device_interfaces = "poetry run pip uninstall -y biosignal-device-interface"
_run_install_device_interfaces = "poetry run pip install -e submodules/biosignal_device_interface"
install-dev = ["_install_poetry_with_dev", "_run_submodule_update", "_run_remove_device_interfaces", "_run_install_device_interfaces"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"