-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.56 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
[project]
name = "monocleaner"
version = "1.7.0"
requires-python = ">=3.8"
authors = [
{ name = "Prompsit Language Engineering", email = "[email protected]" },
]
maintainers = [
{ name = "Jaume Zaragoza", email = "[email protected]" },
]
description = "Monolingual corpus fluency filter"
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Linguistic",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Filters",
]
dependencies = [
"regex",
"toolwrapper",
"sacremoses",
"numpy",
"pyyaml",
"fastspell==0.12",
]
[project.license]
text = "GNU General Public License v3.0"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[build-system]
requires = [ "setuptools>=61.2,<66", ]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/bitextor/monocleaner"
"Monocleaner on GitHub" = "https://github.com/bitextor/monocleaner"
"Prompsit Language Engineering" = "http://www.prompsit.com"
Macocu = "https://macocu.eu/"
[tool.setuptools]
script-files = [
"scripts/monocleaner-download",
]
[project.scripts]
monocleaner = "monocleaner.monocleaner:main"
monocleaner-train = "monocleaner.monocleaner_train:main"
monocleaner-hardrules = "monocleaner.hardrules:main"