-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpyproject.toml
62 lines (56 loc) · 1.19 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sign-language-datasets"
version = "0.2.1"
description = "TFDS Datasets for sign language"
readme = "README.md"
requires-python = ">=3.6"
authors = [
{ name = "Amit Moryossef", email = "[email protected]" }
]
dependencies = [
"typing-extensions",
"python-dotenv",
"tqdm",
"pose-format>=0.0.3",
"tensorflow-datasets",
"numpy",
"Pillow",
"requests",
"etils",
# For the BSL, DGS, NGT corpora
"lxml",
"pympi-ling",
# Set the correct tensorflow version based on the platform
'tensorflow; platform_system != "Darwin"',
'tensorflow-macos; platform_system == "Darwin"',
]
[project.optional-dependencies]
video = [
"opencv-python"
]
dev = [
"pylint",
"pytest",
"pytest-cov",
"black",
]
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
sign_language_datasets = [
"*.header",
"*.poseheader",
"*.csv",
"*.tsv",
"*.png",
"*.ttf",
"*.json",
]
[tool.pytest.ini_options]
addopts = "-v --cov=sign_language_datasets"
filterwarnings = [
"ignore::DeprecationWarning:flatbuffers",
]