-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (45 loc) · 1.15 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
[tool.poetry]
name = "mimics"
version = "0.1.0"
description = "Mimics disorder detection by exercises videos"
authors = ["Vladislav Goncharenko <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7.1"
numpy = "^1.20.1"
pandas = "^1.2.2"
matplotlib = "^3.3.4"
scikit-learn = "^0.23"
joblib = "^1.0.1"
torch = "^1.7.1"
torchvision = "^0.8.2"
dlib = "^19.21.1"
opencv-python = "^4.5.1"
mne = "^0.22.0"
pyriemann = "^0.2.6"
face-alignment = "^1.3.3"
mlflow = "^1.14.0"
landmark-detection = {git = "ssh://[email protected]/v-goncharenko/landmark-detection.git", rev = "v1.0"}
[tool.poetry.dev-dependencies]
ipykernel = "^5.5.0"
fire = "^0.4.0"
dvc = "^1.11.16"
pre-commit = "^2.10.1"
[tool.black]
line-length = 90
target-version = ["py37"]
skip-string-normalization = true
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 90
lines_after_imports = 2
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "90"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"