-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
53 lines (50 loc) · 1.47 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
[project]
name = "bifixer"
version = "0.8.11"
license = {file = "LICENSE"}
authors = [
{ name="Prompsit Language Engineering", email="[email protected]" },
]
maintainers = [
{ name="Marta Bañón", email="[email protected]" },
{ name="Jaume Zaragoza", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"ftfy>=6",
"nltk>=3.9.1",
"pytest",
"regex",
"Unidecode",
"xxhash>=2.0.0",
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"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]
loomchild = [ "loomchild-segment==2.0.2", ]
[build-system]
requires = [
"setuptools>=61",
"wheel",
]
build-backend = "setuptools.build_meta"
[project.scripts]
bifixer = "bifixer.bifixer:main"
monofixer = "bifixer.monofixer:main"
[project.urls]
"Bifixer on GitHub" = "https://github.com/bitextor/bifixer"
"Prompsit Language Engineering" = "http://www.prompsit.com"
"Paracrawl" = "https://paracrawl.eu/"
"MaCoCu" = "https://macocu.eu"