-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
81 lines (73 loc) · 2.46 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
build-backend = 'mesonpy'
requires = [
'meson-python',
'wheel',
'Cython',
'numpy'
]
[project]
name = 'werpy'
version = '2.1.2'
description = 'A powerful yet lightweight Python package to calculate and analyze the Word Error Rate (WER).'
readme = 'README.md'
requires-python = '>=3.8'
license = {file = 'LICENSE'}
authors = [
{name = 'Ross Armstrong', email = 'ross.armstrong@analyticsinmotion.com'},
]
classifiers = [
"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",
"Programming Language :: Cython",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Text Processing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics"
]
keywords = [
"wer",
"word error rate",
"python",
"python package",
"stt",
"speech-to-text",
"levenshtein distance",
"nlp",
"metrics"
]
dependencies = [
"numpy>=1.21.6; python_version<'3.11'",
"numpy>=1.23.2; python_version>='3.11'",
"pandas>=1.3.0"
]
[project.urls]
"Repository" = "https://github.com/analyticsinmotion/werpy"
"Documentation" = "https://werpy.readthedocs.io/"
"Bug Tracker" = "https://github.com/analyticsinmotion/werpy/issues"
[project.optional-dependencies]
docs = [
"sphinx==7.3.7",
"sphinx-nefertiti== 0.3.4",
]
# For localized testing of the package on Windows OS
#[tool.cibuildwheel]
#build = "cp38-* cp39-* cp310-* cp311-* cp312-*"
#skip = "*-win32 *-manylinux_i686 *-manylinux2010_i686 *-manylinux2014_i686 *-manylinux_aarch64 *-manylinux_ppc64le *-manylinux_s390x *-musllinux_i686 *-musllinux_aarch64 *-musllinux_ppc64le *-musllinux_s390x"
#[tool.cibuildwheel.windows]
#build = "cp38-* cp39-* cp310-* cp311-* cp312-*"
#skip = "*-win32"