-
Notifications
You must be signed in to change notification settings - Fork 90
/
pyproject.toml
49 lines (43 loc) · 997 Bytes
/
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
# Copyright 2021-present Kensho Technologies, LLC.
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pyctcdecode"
version = "0.6.0"
description = "CTC beam search decoder for speech recognition."
readme = "README.md"
requires-python = ">=3.7"
authors = [
{name = "Kensho Technologies, LLC.", email = "pyctcdecode-maintainer@kensho.com"},
]
# Apache 2.0
license = {file = "LICENSE"}
dependencies = [
"numpy>=1.15.0,<2.0.0",
"pygtrie>=2.1,<3.0",
"importlib-metadata<5;python_version=='3.7'",
]
[project.urls]
source = "https://github.com/kensho-technologies/pyctcdecode"
[project.optional-dependencies]
dev = [
"bandit",
"black",
"flake8",
"huggingface-hub",
"hypothesis>=6.14,<7",
"isort>=5.0.0,<6",
"jupyter",
"mypy",
"nbconvert",
"nbformat",
"pydocstyle",
"pylint",
"pytest",
"pytest-cov",
]
[tool.setuptools]
packages = ["pyctcdecode"]
[tool.black]
line-length = 100