-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 776 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (24 loc) · 776 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "compute-wer"
authors = [{ name = "Zhendong Peng", email = "pzd17@tsinghua.org.cn" }]
description = "Compute WER"
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = ["click", "rapidfuzz"]
[project.scripts]
compute-wer = "compute_wer.cli:main"
[project.urls]
Homepage = "https://github.com/pengzhendong/compute-wer"
Documentation = "https://github.com/pengzhendong/compute-wer#readme"
BugTracker = "https://github.com/pengzhendong/compute-wer/issues"
[tool.setuptools.dynamic]
version = { file = "VERSION" }