-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (40 loc) · 1005 Bytes
/
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
[project]
name = "pose-anonymization"
description = "Remove identifying information from sign language poses"
version = "0.0.1"
authors = [
{ name = "Amit Moryossef", email = "[email protected]" },
]
readme = "README.md"
dependencies = [
"pose-format",
]
[project.optional-dependencies]
dev = [
"pytest",
"pylint",
"matplotlib",
"spoken_to_signed @ git+https://github.com/ZurichNLP/spoken-to-signed-translation"
]
[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 = [
"pose_anonymization",
"pose_anonymization.data",
]
[tool.setuptools.package-data]
pose_anonymization = ["**/*.json", "**/*.poseheader"]
[tool.pytest.ini_options]
addopts = "-v"
testpaths = ["pose_anonymization"]
[project.scripts]
anonymize_pose = "pose_anonymization.bin:main"