-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.88 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]
# https://setuptools.readthedocs.io/en/latest/setuptools.html#setup-cfg-only-projects
requires = [
"setuptools >= 40.9.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = 'biodenoising_inference'
description = "Animal vocalization denoising. Supports offline and streaming denoising. Animal-domain fork of Facebook speech denoiser https://github.com/facebookresearch/denoiser. For training, please use the github training repository https://github.com/earthspecies/biodenoising."
requires-python = '>=3.8.0'
version = "0.1.0"
authors = [
{ name="Marius Miron", email="[email protected]" },
]
readme = "README.md"
dependencies = ['julius', 'numpy>=1.19', 'six', 'sounddevice>=0.4', 'torch>=1.5', 'torchaudio>=0.5', 'openunmix', 'asteroid', 'einops', 'omegaconf==1.4.1', 'noisereduce']
classifiers=[
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
license = { file="LICENSE" }
[project.urls]
Homepage = 'https://github.com/earthspecies/biodenoising-inference-internal'
Issues = 'https://github.com/earthspecies/biodenoising-inference-internal/issues'
[tool.setuptools.packages.find]
where = ["."]
include = ["biodenoising","biodenoising.denoiser"]