-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 985 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (33 loc) · 985 Bytes
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "signnet-1m"
version = "0.1.0"
description = "Reference augmentation pipeline for SignNet-1M (ECCV 2026)."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Zhewen He", email = "zh3510@nyu.edu"},
{name = "Junyi Hu"},
{name = "Haomian Huang"},
{name = "Zhenhua Li"},
{name = "Yu-Shen Liu"},
{name = "Yi Fang", email = "yf23@nyu.edu"},
]
keywords = ["sign-language", "dataset", "augmentation", "3d-gaussian-splatting"]
dependencies = [
"numpy>=1.23",
"opencv-python>=4.8",
"pyyaml>=6.0",
"tqdm>=4.66",
]
[project.urls]
Homepage = "https://signnet.chatsign.ai/"
Paper = "https://arxiv.org/abs/2606.24361"
Dataset = "https://drive.google.com/drive/folders/1Wc43peMNvbkyQ_VGgqi9vdYjA_0Fc3HX"
Repository = "https://github.com/openhe-hub/SignNet-1M"
[tool.setuptools.packages.find]
where = ["."]
include = ["signnet*"]