-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.12 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
[project]
name = "alt-eval"
authors = [
{name = "Ondřej Cífka"},
]
description = "Automatic lyrics transcription evaluation toolkit"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
"jiwer>=3.0.3",
"python-iso639>=2023.6.15",
"regex>=2023.8.8",
"sacremoses==0.0.53",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"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 :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.optional-dependencies]
dev = [
"pre-commit==3.7.1",
]
test = [
"pytest>=7.3.1",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "alt_eval.__version__"}
[tool.ruff]
line-length = 100
[tool.ruff.lint]
ignore = ["E741"]