-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.06 KB
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
[tool.poetry]
name = "pos_detection"
version = "0.1.0"
description = "Pose estimation and reacreation"
authors = ["Rog Alexey Sergeevich <pizikxxx97@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.10.12"
ultralytics = "8.1.27"
lightning = "^2.2.0"
opencv-python = "^4.8.0"
mlflow = "^2.11.3"
hydra-core = "^1.3.2"
numpy = "^1.25.2"
[tool.poetry.dev-dependencies]
ipykernel = "^5.5.0"
pre-commit = "^3.7.0"
[tool.black]
line-length = 90
target-version = ["py310"]
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.flake8]
max-line-length = 90
ignore = ['E203', 'E501', 'W503', 'B950']
max-complexity = 12
select = ['B', 'C', 'E', 'F', 'W', 'B9']
count = true
[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"