forked from lovemefan/SenseVoice-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (44 loc) · 1.58 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
[build-system]
requires = ["setuptools", "wheel", "build", "twine"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">= 3.9"
name = "sensevoice-onnx"
version = "1.1.1"
authors = [ {name = "Lovemefan", email = "lovemefan@outlook.com"} ]
description = "SenseVoice-python: open source multi-language asr system from funasr with onnxruntime"
readme = "README-EN.md"
license = "MIT"
dependencies = [
"numpy>=1.24.4",
"kaldi_native_fbank",
"sentencepiece>=0.2.0",
"soundfile>=0.12.1",
"huggingface_hub",
"protobuf>=3.19.6"
]
keywords = ["asr", "speech", "ai", "audio-to-text"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.scripts]
sensevoice = "sensevoice.sense_voice:main"
[project.optional-dependencies]
cpu = ["onnxruntime>=1.17.0"]
gpu = ["onnxruntime-gpu>=1.17.0"]
[project.urls]
Homepage = "https://github.com/lovemefan/SenseVoice-python"
Repository = "https://github.com/lovemefan/SenseVoice-python.git"