-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.05 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
[project]
name = "sign-prosody-extraction"
version = "24.12dev1"
description = """Code and command-line tool for "Automated Extraction of
Prosodic Structure from Unannotated Sign Language Video" (Sevilla et al.,
2024)."""
authors = [{ name = "Antonio F. G. Sevilla", email = "[email protected]" }]
readme = "README.md"
license = {text = "EUPL-1.2"}
dependencies = [
"torch>=2.5.1",
"click>=8.1.8",
"numpy>=1.26.4",
"imageio[ffmpeg]>=2.36.1",
"matplotlib>=3.10.0",
"torchvision>=0.20.1",
"nptyping>=2.5.0",
"scipy>=1.13.0",
"scikit-learn>=1.6.0",
"pandas>=2.2.3",
"flow-vis>=0.1",
"mediapipe>=0.10.20",
]
requires-python = ">=3.12"
[project.urls]
Repository = "https://github.com/agarsev/sign-prosody-extraction"
[project.scripts]
sign-prosody-extraction = "sign_prosody_extraction.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build]
packages = ["sign_prosody_extraction"]