-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (32 loc) · 978 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
[project]
name = "whitespace_correction"
version = "0.2.2"
description = "Correct missing or spurious whitespaces in text."
authors = [
{ name = "Sebastian Walter", email = "swalter@cs.uni-freiburg.de" }
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
keywords = ["nlp", "text", "correction", "whitespace"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing",
"Topic :: Utilities"
]
dependencies = [
"dtpu==0.2.3",
"transformers>=4.26.0"
]
[project.scripts]
"wsc" = "whitespace_correction.api.cli:main"
[project.urls]
Github = "https://github.com/ad-freiburg/whitespace-correction"
Website= "https://whitespace-correction.cs.uni-freiburg.de"
[tool.distutils.bdist_wheel]
universal = true
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"