-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.53 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (54 loc) · 1.53 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scoreq-pytorch"
version = "0.1.0"
description = "Unofficial fairseq-free PyTorch implementation of SCOREQ"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "Petr Grinberg" }
]
dependencies = [
"torch>=2.2.0",
"huggingface_hub>=0.20",
]
keywords = [
"scoreq",
"speech-quality",
"audio",
"tts",
"neural-codec",
"pytorch",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"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",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
]
[project.urls]
Homepage = "https://github.com/Blinorot/scoreq-pytorch"
Repository = "https://github.com/Blinorot/scoreq-pytorch"
Issues = "https://github.com/Blinorot/scoreq-pytorch/issues"
Model = "https://huggingface.co/Blinorot/SCOREQ-PyTorch"
Paper = "https://arxiv.org/abs/2410.06675"
[tool.setuptools.packages.find]
where = ["src"]
include = ["scoreq_pytorch*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.data-files]
"LICENSES" = [
"LICENSES/FAIRSEQ_LICENSE",
"LICENSES/SCOREQ_LICENSE",
]