-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (54 loc) · 1.59 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
62
63
[project]
name = "gladia-normalization"
version = "0.1.0"
description = "Normalize speech-to-text output for fair Word Error Rate (WER) comparison"
readme = "README.md"
authors = [{ name = "Gladia", email = "support@gladia.io" }]
keywords = [
"speech-to-text",
"STT",
"ASR",
"WER",
"normalization",
"transcription",
"benchmark",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Topic :: Text Processing :: Linguistic",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"contractions>=0.1.73",
"pyyaml>=6.0.3",
"text2num>=3.0.0",
]
[tool.setuptools.package-data]
normalization = ["presets/*.yaml"]
[project.scripts]
gladia-normalization = "normalization.cli:main"
[project.urls]
Homepage = "https://github.com/gladiaio/normalization"
Repository = "https://github.com/gladiaio/normalization"
"Bug Tracker" = "https://github.com/gladiaio/normalization/issues"
[dependency-groups]
dev = ["pre-commit>=4.5.1", "ty>=0.0.20", "pytest>=9.0.3", "pygments>=2.20.0", "ruff>=0.15.2"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["normalization"]
[tool.pytest.ini_options]
python_files = ["*_test.py"]
[tool.ruff.lint]
select = ["E", "F", "I"] # pycodestyle errors, pyflakes, isort
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"