-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.cfg
82 lines (77 loc) · 2.21 KB
/
setup.cfg
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
71
72
73
74
75
76
77
78
79
80
81
82
[metadata]
description = Additional lookup tables and data resources for spaCy
url = https://spacy.io
author = Explosion
author_email = contact@explosion.ai
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
[options]
zip_safe = true
include_package_data = true
python_requires = >=3.6
install_requires =
setuptools
[options.entry_points]
spacy_lookups =
bn = spacy_lookups_data:bn
ca = spacy_lookups_data:ca
cs = spacy_lookups_data:cs
da = spacy_lookups_data:da
de = spacy_lookups_data:de
el = spacy_lookups_data:el
en = spacy_lookups_data:en
es = spacy_lookups_data:es
fa = spacy_lookups_data:fa
fr = spacy_lookups_data:fr
ga = spacy_lookups_data:ga
grc = spacy_lookups_data:grc
hr = spacy_lookups_data:hr
hu = spacy_lookups_data:hu
id = spacy_lookups_data:id_
it = spacy_lookups_data:it
lb = spacy_lookups_data:lb
lt = spacy_lookups_data:lt
mk = spacy_lookups_data:mk
nb = spacy_lookups_data:nb
nl = spacy_lookups_data:nl
pl = spacy_lookups_data:pl
pt = spacy_lookups_data:pt
ro = spacy_lookups_data:ro
ru = spacy_lookups_data:ru
sr = spacy_lookups_data:sr
sv = spacy_lookups_data:sv
ta = spacy_lookups_data:ta
th = spacy_lookups_data:th
tl = spacy_lookups_data:tl
tr = spacy_lookups_data:tr
ur = spacy_lookups_data:ur
[bdist_wheel]
universal = true
[sdist]
formats = gztar
[flake8]
ignore = E203, E266, E501, E731, W503
max-line-length = 80
select = B,C,E,F,W,T4,B9
exclude =
.env,
.git,
__pycache__,