forked from sign-language-processing/transcription
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (59 loc) · 1.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "sign-transcription"
description = "Models involved in transcribing sign language"
version = "0.0.1"
authors = [
{ name = "Amit Moryossef", email = "[email protected]" }
]
readme = "README.md"
dependencies = [
"joeynmt",
"sentencepiece",
"numpy",
"opencv-python",
"pose_format",
"torch",
"tqdm"
]
[project.optional-dependencies]
dev = [
"tensorflow",
"fonttools",
"tensorflow-datasets",
"sign-language-datasets",
"wandb",
"pytorch_lightning",
"mediapipe",
"scikit-learn",
"pytest",
"pylint"
]
[tool.yapf]
based_on_style = "google"
column_limit = 120
[tool.setuptools]
packages = [
"_shared",
"video_to_pose",
"pose_to_video",
"pose_to_segments",
"pose_to_text",
"text_to_pose",
"text_to_text",
]
[tool.setuptools.package-data]
pose_to_segments = ["*.pth"]
[tool.pytest.ini_options]
addopts = "-v"
testpaths = [
"_shared",
"video_to_pose",
"pose_to_video",
"pose_to_segments",
"pose_to_text",
"text_to_pose"
]
[project.scripts]
video_to_pose = "video_to_pose.bin:main"
pose_to_segments = "pose_to_segments.bin:main"
pose_to_video = "pose_to_video.bin:main"