-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (51 loc) · 1.33 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
[tool.poetry]
name = "eyefeatures"
version = "0.1.1"
description = "Preprocessing, visualization, statistical analysis, feature engineering, and machine learning of eye movement data."
authors = ["Vagiz Daudov <[email protected]>"]
readme = "README.md"
packages = [{include = "eyefeatures"}]
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
matplotlib = "3.8.4"
numba = "0.60.0"
numpy = "1.26.0"
pandas = "2.2.2"
scikit-learn = "1.5.1"
scikit_multilearn = "0.2.0"
scipy = "1.14.1"
tqdm = "4.66.4"
EMD-signal = "1.6.4"
gudhi = "3.10.1"
[tool.poetry.group.docs.dependencies]
sphinx = "8.1.3"
m2r2 = "^0.3.3.post2"
docutils = "0.20"
[too.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "24.3.0"
isort = "5.12.0"
flake8 = "6.1"
[tool.poetry.group.deep]
optional = true
[tool.poetry.group.deep.dependencies]
pytorch_lightning = "2.4.0"
torch = "2.4.0"
torch_geometric = "2.5.3"
torchmetrics = "1.4.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
jupyterlab = "4.2.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
license = {file = "LICENSE"}
authors = [
{name = "Kondaurov Zakhar"},
{name = "Tikhonov Daniil"},
{name = "Anton Surkov", email = "[email protected]"},
{name = "Vagiz Daudov", email = "[email protected]"}
]