-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (45 loc) · 1.07 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
[project]
name = "behavior-senpai"
version = "1.5.0"
description = "A collection of Python scripts and applications for supporting Quantitative Behavioral Observation using videos."
readme = "README.md"
requires-python = "~=3.11.0"
dependencies = [
"torch==2.1.2+cu121",
"torchvision==0.16.2+cu121",
"ultralytics~=8.3.0",
"lapx~=0.5",
"mediapipe==0.10.14",
"mmcv==2.1.0",
"mmdet==3.3.0",
"chumpy==0.66",
"mmpose~=1.3.0",
"scikit-learn~=1.5.0",
"pyperclip~=1.9.0",
"ttkthemes~=3.2",
"umap-learn~=0.5.0",
"pip-licenses~=4.3.0",
"tables>=3.10.2",
]
[tool.uv]
extra-index-url = [
"https://download.pytorch.org/whl/cu121"
]
find-links = [
"https://download.openmmlab.com/mmcv/dist/cu121/torch2.1/index.html"
]
[tool.ruff]
select = [
"F", # pyflakes
"E", # pycodestyle
"W", # pycodestyle warnings
"I", # isort
]
ignore = []
line-length = 150
extend-ignore = [
"D105", # undocumented-magic-method
"D107", # undocumented-public-init
"D205", # blank-line-after-summary
"D415" # ends-in-punctuation
]