-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
70 lines (66 loc) · 2.17 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
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "bicleaner-ai"
version = "3.1.0"
license = {file = "LICENSE"}
authors = [
{ "name" = "Prompsit Language Engineering", "email" = "[email protected]" }
]
maintainers = [
{ "name" = "Jaume Zaragoza", "email" = "[email protected]" }
]
description = "Parallel corpus classifier, indicating the likelihood of a pair of sentences being mutual translations or not (neural version)"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"scikit-learn>=0.22.1",
"PyYAML>=5.1.2",
"numpy<2",
"pytest",
"toolwrapper",
"joblib",
"sacremoses",
"bicleaner-hardrules==2.10.4",
"sentencepiece",
"protobuf==3.20.3",
"tensorflow>=2.6.5,<2.16",
"bicleaner-ai-glove==0.2.1",
"fuzzywuzzy",
"python-Levenshtein",
"transformers==4.36.1",
"huggingface-hub>=0.22,<0.23",
"zstandard",
"psutil",
"regex",
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.7",
"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.optional-dependencies]
transliterate = [ "cyrtranslit==1.1" ]
[build-system]
requires = [
"setuptools>=61",
"wheel",
]
build-backend = "setuptools.build_meta"
[project.scripts]
bicleaner-ai-train = "bicleaner_ai.bicleaner_ai_train:main"
bicleaner-ai-classify = "bicleaner_ai.bicleaner_ai_classifier:main"
bicleaner-ai-download = "bicleaner_ai.bicleaner_ai_download:main"
bicleaner-ai-download-hf = "bicleaner_ai.bicleaner_ai_download_hf:main"
bicleaner-ai-generate-train = "bicleaner_ai.bicleaner_ai_generate_train:main"
bicleaner-ai-sample = "bicleaner_ai.bicleaner_ai_sample:main"
[project_urls]
"Bicleaner on GitHub" = "https://github.com/bitextor/bicleaner"
"Prompsit Language Engineering" = "http://www.prompsit.com"
"Paracrawl" = "https://paracrawl.eu/"
"MaCoCu" = "https://macocu.eu/"
"HPLT Project" = "https://hplt-project.org"