-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 1.19 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
[project]
name = "text_correction_benchmarks"
version = "0.2.0"
description = "Benchmarks and evaluation tools for text correction tasks"
authors = [
{ name = "Sebastian Walter", email = "swalter@cs.uni-freiburg.de" }
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
keywords = ["nlp", "text", "correction", "benchmark"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing",
"Topic :: Utilities"
]
dependencies = [
"dtpu>=0.2.0",
"requests>=2.0.0",
"openai>=0.27.0"
]
[project.optional-dependencies]
baselines = [
"jamspell",
"wordsegment"
]
[project.scripts]
"tcb.download" = "text_correction_benchmarks.cli.download:main"
"tcb.evaluate" = "text_correction_benchmarks.cli.evaluate:main"
"tcb.baseline" = "text_correction_benchmarks.baselines:main"
[project.urls]
Github = "https://github.com/ad-freiburg/text-correction-benchmarks"
[tool.distutils.bdist_wheel]
universal = true
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"