-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
60 lines (54 loc) · 1.73 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
[project]
name = "fastspell"
version = "0.12"
license = {file = "LICENSE"}
readme = "README.md"
description = "Targetted language identifier, based on FastText and Hunspell."
requires-python = ">=3.8"
dependencies = [
"cyhunspell>=2.0.2, <=2.0.3",
"fastspell-dictionaries==3.3",
"fasttext-wheel==0.9.2",
"numpy<2",
"urllib3",
"PyYAML",
"regex",
"hanzidentifier"
]
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.authors]]
name = "Prompsit Language Engineering"
email = "info@prompsit.com"
[[project.maintainers]]
name = "Marta Bañon"
email = "mbanon@prompsit.com"
[[project.maintainers]]
name = "Jaume Zaragoza"
email = "jzaragoza@prompsit.com"
[project.scripts]
fastspell = "fastspell.fastspell:main"
fastspell-download = "fastspell.fastspell_download:main"
[project.urls]
Homepage = "https://github.com/mbanon/fastspell"
"FastSpell on GitHub" = "https://github.com/mbanon/fastspell"
"Prompsit Language Engineering" = "http://www.prompsit.com"
Paracrawl = "https://paracrawl.eu/"
MaCoCu = "https://macocu.eu"
"HPLT Project" = "https://hplt-project.org"
[build-system]
requires = [ "setuptools>=61.2",]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
fastspell = [ "config/*.yaml",]