-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.17 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 = "signbank-plus"
description = "Preparing a Multilingual Sign Language Dataset for Machine Translation Using Large Language Models"
version = "0.0.1"
authors = [
{ name = "Amit Moryossef", email = "[email protected]" },
{ name = "Zifan Jiang", email = "[email protected]" },
]
readme = "README.md"
dependencies = [
# CLI
"pympi-ling", # Used for reading and writing ELAN files
"huggingface-hub", # To download the model
"signwriting @ git+https://github.com/sign-language-processing/signwriting", # Tokenize SignWriting
"sockeye", # Translation model used
]
[project.optional-dependencies]
dev = [
"pytest",
"pylint"
]
[tool.yapf]
based_on_style = "google"
column_limit = 120
[tool.pylint]
max-line-length = 120
disable = [
"C0114", # Missing module docstring
"C0115", # Missing class docstring
"C0116", # Missing function or method docstring
]
[tool.setuptools]
packages = [
"signbank_plus",
"signbank_plus.nmt",
"signbank_plus.nmt.sockeye",
]
[tool.pytest.ini_options]
addopts = "-v"
testpaths = ["signwriting_transcription"]
[project.scripts]
signwriting_to_text_sockeye = "signbank_plus.nmt.sockeye.bin:main"