-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject_nogpu.toml
37 lines (33 loc) · 936 Bytes
/
pyproject_nogpu.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
[project]
name = "behavior-senpai"
version = "1.3.2"
description = "A collection of Python scripts and applications for supporting Quantitative Behavioral Observation using videos."
dependencies = [
"torch~=2.1.0",
"mediapipe~=0.10.0",
"scikit-learn~=1.4",
"pyperclip~=1.9.0",
"ttkthemes~=3.2",
"numpy~=1.26",
"pandas~=2.2",
"seaborn~=0.13",
"umap-learn>=0.5.6",
]
readme = "README.md"
requires-python = ">= 3.11"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pip-licenses~=4.3.3",
]
[tool.rye.scripts]
launcher = "python src/launcher.py"
compare = "python src/app_compare.py"
detector = "python src/app_detect.py"
updatesenpai = "python src/update.py"
license = "pip-licenses --order=license -u -l --no-license-path --format=json --output-file src/license.json"
[tool.hatch.metadata]
allow-direct-references = true