-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 1.08 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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mp2torch"
description = "Pytorch implementation of mediapipe that enables batch processing on GPU"
authors = [
{ name = "yuta0306", email = "[email protected]" }
]
dependencies = [
"mediapipe >= 0.10.8",
"torch >= 2.1.1",
"tflite >= 2.10.0",
"safetensors >= 0.4.1",
"tensorflow >= 2.13.1",
"tf2onnx @ git+https://github.com/onnx/tensorflow-onnx.git",
"onnx2torch @ git+https://github.com/ENOT-AutoDL/onnx2torch.git",
"einops >= 0.7.0",
"tqdm >= 4.66.1",
"ffmpegcv >= 0.3.9"
]
readme = "README.md"
requires-python = ">= 3.8"
dynamic=["version"]
[project.optional-dependencies]
dev = [
"pytest",
"flake8",
"mypy",
"black",
"isort",
"pynvim"
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = {attr = "mp2torch._version.version"}
[tool.setuptools_scm]
write_to = "src/mp2torch/_version.py"
version_scheme = "python-simplified-semver"
local_scheme = "no-local-version"