-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.89 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
[project]
name = "bicleaner"
version = "0.17.4"
description = "Parallel corpus classifier, indicating the likelihood of a pair of sentences being mutual translations or not"
readme = "README.md"
maintainers = [
{ name = "Marta Bañón", email = "[email protected]" },
{ name = "Jaume Zaragoza", email = "[email protected]" },
{ name = "Tudor Nicolae Mateiu", email = "[email protected]" },
]
requires-python = ">=3.8"
dependencies = [ "regex",
"scikit-learn==1.1.3",
"PyYAML",
"numpy",
"scipy>=1.5.4",
"pytest",
"pycld2==0.41",
"toolwrapper>=0.4.1,<=2.1.0",
"joblib",
"sacremoses==0.0.53",
"bicleaner-hardrules==2.10.3",
]
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",
]
[[project.authors]]
name = "Prompsit Language Engineering"
email = "[email protected]"
[project.license]
text = "GNU General Public License v3.0"
[build-system]
requires = [ "setuptools>=61.2,<66",]
build-backend = "setuptools.build_meta"
[project.scripts]
bicleaner-classify = "bicleaner.bicleaner_classifier_full:main"
bicleaner-classify-lite = "bicleaner.bicleaner_classifier_lite:main"
bicleaner-train = "bicleaner.bicleaner_train:main"
bicleaner-download = "bicleaner.bicleaner_download:main"
[project.urls]
Homepage = "https://github.com/bitextor/bicleaner"
"Bicleaner on GitHub" = "https://github.com/bitextor/bicleaner"
"Prompsit Language Engineering" = "http://www.prompsit.com"
"Bicrawler & Bicleaner" = "https://bicrawler.com"
Paracrawl = "https://paracrawl.eu/"