-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 858 Bytes
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 858 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
37
38
39
40
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "hand_tracking_toolkit"
version = "0.1"
dependencies = [
"numpy",
"scipy",
"typing_extensions",
"torch",
"opencv-python",
"webdataset",
"pillow",
"tqdm",
]
requires-python = ">=3.7"
authors = [
{name = "Yann Labbe", email = "ylabbe@meta.com"},
{name = "Linguang Zhang", email = "linguang@meta.com"},
{name = "Abhay Mittal", email = "abhayml@meta.com"},
{name = "Weiguang Si", email = "weiguang@meta.com"},
{name = "Shreyas Hampali", email = "hampali@meta.com"},
]
maintainers = [
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
]
[tool.pytest.ini_options]
pythonpath = [
"."
]
[tool.setuptools]
packages = ["hand_tracking_toolkit", "hand_tracking_toolkit.hand_models"]
py-modules = []