-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
53 lines (48 loc) · 1.6 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
47
48
49
50
51
52
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "rVADfast"
version = "0.0.4"
description = "rVADfast - a fast and robust unsupervised VAD"
readme = "README.md"
requires-python = ">= 3.8"
keywords = ["Audio", "Tools", "VAD", "Speech", "Speech Processing"]
license = {text = "MIT License"}
classifiers = [
"Development Status :: 3 - Alpha",
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
'Topic :: Scientific/Engineering',
'Topic :: Multimedia :: Sound/Audio',
]
dependencies = [
"numpy >= 1.23.5",
"scipy >= 1.10.0",
"audiofile >= 1.1.1",
"tqdm >= 4.64.1"
]
authors = [
{name="Zheng-Hua Tan", email = "[email protected]"},
{name="Achintya Kumar Sarkar", email="[email protected]"},
{name="Holger Severin Bovbjerg", email = "[email protected]"}
]
maintainers = [
{name="Holger Severin Bovbjerg", email = "[email protected]"},
{name="Zheng-Hua Tan", email = "[email protected]"}
]
[project.scripts]
rVADfast_process = "rVADfast.process:main"
[project.urls] # Optional
Homepage = "https://github.com/zhenghuatan/rVADfast/"
Repository = "https://github.com/zhenghuatan/rVADfast.git"
Issues = "https://github.com/zhenghuatan/rVADfast/issues"
Source = "https://github.com/zhenghuatan/rVADfast/"
[tool.setuptools.packages.find]
where = ["src"]