-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (79 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
84 lines (79 loc) · 1.66 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gst-python-ml"
version = "1.0.5"
description = "An ML package for GStreamer"
readme = "README.md"
requires-python = ">=3.13"
license-files = ["COPYING"]
authors = [{name = "Aaron Boxer", email = "aaron.boxer@collabora.com"}]
urls.Homepage = "https://github.com/collabora/gst-python-ml"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"pygobject",
"torch==2.9.1",
"torchvision==0.24.1",
"torchaudio==2.9.1",
"transformers==4.56.2",
"qwen-vl-utils[decord]==0.0.8",
"autoawq==0.2.9",
"accelerate==1.12.0",
"bitsandbytes==0.46.1",
"opencv-python==4.10.0.84",
"opencv-contrib-python==4.10.0.84",
"numpy",
"huggingface-hub",
"lap",
"pycairo",
"ultralytics",
"confluent_kafka",
# "flash-attn",
"diffusers",
"sentencepiece",
"protobuf",
"whisperspeech",
"webdataset",
"easydict",
"pyflann-py3",
"soundfile",
"speechbrain",
"pyopengl"
]
[project.optional-dependencies]
onnx = [
"onnxruntime",
]
onnx-gpu = [
"onnxruntime-gpu",
]
tvm = [
"apache-tvm",
]
tinygrad = [
"tinygrad",
]
vad = [
"pysilero",
"pysilero-vad",
"faster-whisper",
]
# Optional
[dependency-groups]
test = [
"pytest>=7.0",
# Add other test tools
]
dev = [
{include-group = "test"},
# Add linting, etc., e.g., "ruff"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["plugins/python"]