2019-09-30 21:10:55 +03:00
|
|
|
[metadata]
|
|
|
|
description = Industrial-strength Natural Language Processing (NLP) in Python
|
|
|
|
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 :: Cython
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3.6
|
|
|
|
Programming Language :: Python :: 3.7
|
2019-10-19 19:13:25 +03:00
|
|
|
Programming Language :: Python :: 3.8
|
2020-11-23 11:45:18 +03:00
|
|
|
Programming Language :: Python :: 3.9
|
2019-09-30 21:10:55 +03:00
|
|
|
Topic :: Scientific/Engineering
|
2021-05-31 11:38:29 +03:00
|
|
|
project_urls =
|
|
|
|
Release notes = https://github.com/explosion/spaCy/releases
|
|
|
|
Source = https://github.com/explosion/spaCy
|
2019-09-30 21:10:55 +03:00
|
|
|
|
|
|
|
[options]
|
|
|
|
zip_safe = false
|
|
|
|
include_package_data = true
|
2019-12-22 03:53:56 +03:00
|
|
|
python_requires = >=3.6
|
2019-09-30 21:10:55 +03:00
|
|
|
setup_requires =
|
2019-10-01 01:25:46 +03:00
|
|
|
cython>=0.25
|
2020-02-12 01:46:18 +03:00
|
|
|
numpy>=1.15.0
|
2019-10-01 01:25:46 +03:00
|
|
|
# We also need our Cython packages here to compile against
|
|
|
|
cymem>=2.0.2,<2.1.0
|
|
|
|
preshed>=3.0.2,<3.1.0
|
|
|
|
murmurhash>=0.28.0,<1.1.0
|
2021-04-22 11:09:13 +03:00
|
|
|
thinc>=8.0.3,<8.1.0
|
2019-09-30 21:10:55 +03:00
|
|
|
install_requires =
|
2019-11-04 04:39:28 +03:00
|
|
|
# Our libraries
|
2021-04-26 18:06:32 +03:00
|
|
|
spacy-legacy>=3.0.5,<3.1.0
|
2019-09-30 21:10:55 +03:00
|
|
|
murmurhash>=0.28.0,<1.1.0
|
|
|
|
cymem>=2.0.2,<2.1.0
|
|
|
|
preshed>=3.0.2,<3.1.0
|
2021-04-22 11:09:13 +03:00
|
|
|
thinc>=8.0.3,<8.1.0
|
2020-10-05 15:58:56 +03:00
|
|
|
blis>=0.4.0,<0.8.0
|
2021-01-26 06:51:52 +03:00
|
|
|
wasabi>=0.8.1,<1.1.0
|
2021-04-12 15:35:57 +03:00
|
|
|
srsly>=2.4.1,<3.0.0
|
2021-04-29 20:11:28 +03:00
|
|
|
catalogue>=2.0.4,<2.1.0
|
2020-07-01 21:20:04 +03:00
|
|
|
typer>=0.3.0,<0.4.0
|
2021-03-02 14:06:59 +03:00
|
|
|
pathy>=0.3.5
|
2019-11-04 04:39:28 +03:00
|
|
|
# Third-party dependencies
|
2020-01-29 19:35:46 +03:00
|
|
|
tqdm>=4.38.0,<5.0.0
|
2019-11-04 04:39:28 +03:00
|
|
|
numpy>=1.15.0
|
|
|
|
requests>=2.13.0,<3.0.0
|
2021-05-18 12:35:50 +03:00
|
|
|
pydantic>=1.7.4,!=1.8,!=1.8.1,<1.9.0
|
2020-10-19 20:04:42 +03:00
|
|
|
jinja2
|
2020-05-30 15:59:55 +03:00
|
|
|
# Official Python utilities
|
|
|
|
setuptools
|
2020-10-06 15:16:05 +03:00
|
|
|
packaging>=20.0
|
2021-03-02 14:06:59 +03:00
|
|
|
typing_extensions>=3.7.4,<4.0.0.0; python_version < "3.8"
|
2019-09-30 21:10:55 +03:00
|
|
|
|
2020-07-01 21:21:05 +03:00
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
2021-05-28 19:15:31 +03:00
|
|
|
spacy = spacy.cli:setup_cli
|
2020-07-01 21:21:05 +03:00
|
|
|
|
2019-09-30 21:10:55 +03:00
|
|
|
[options.extras_require]
|
2019-10-01 01:01:27 +03:00
|
|
|
lookups =
|
2021-01-29 16:07:49 +03:00
|
|
|
spacy_lookups_data>=1.0.0,<1.1.0
|
2020-10-03 12:13:00 +03:00
|
|
|
transformers =
|
2021-02-02 12:46:56 +03:00
|
|
|
spacy_transformers>=1.0.1,<1.1.0
|
2020-10-08 11:58:50 +03:00
|
|
|
ray =
|
2020-10-08 12:10:48 +03:00
|
|
|
spacy_ray>=0.1.0,<1.0.0
|
2019-09-30 21:10:55 +03:00
|
|
|
cuda =
|
2021-04-28 11:18:24 +03:00
|
|
|
cupy>=5.0.0b4,<10.0.0
|
2019-09-30 21:10:55 +03:00
|
|
|
cuda80 =
|
2021-04-28 11:18:24 +03:00
|
|
|
cupy-cuda80>=5.0.0b4,<10.0.0
|
2019-09-30 21:10:55 +03:00
|
|
|
cuda90 =
|
2021-04-28 11:18:24 +03:00
|
|
|
cupy-cuda90>=5.0.0b4,<10.0.0
|
2019-09-30 21:10:55 +03:00
|
|
|
cuda91 =
|
2021-04-28 11:18:24 +03:00
|
|
|
cupy-cuda91>=5.0.0b4,<10.0.0
|
2019-09-30 21:10:55 +03:00
|
|
|
cuda92 =
|
2021-04-28 11:18:24 +03:00
|
|
|
cupy-cuda92>=5.0.0b4,<10.0.0
|
2019-09-30 21:10:55 +03:00
|
|
|
cuda100 =
|
2021-04-28 11:18:24 +03:00
|
|
|
cupy-cuda100>=5.0.0b4,<10.0.0
|
2020-04-29 13:51:12 +03:00
|
|
|
cuda101 =
|
2021-04-28 11:18:24 +03:00
|
|
|
cupy-cuda101>=5.0.0b4,<10.0.0
|
2020-04-29 13:51:12 +03:00
|
|
|
cuda102 =
|
2021-04-28 11:18:24 +03:00
|
|
|
cupy-cuda102>=5.0.0b4,<10.0.0
|
2020-10-23 12:27:54 +03:00
|
|
|
cuda110 =
|
2021-04-28 11:18:24 +03:00
|
|
|
cupy-cuda110>=5.0.0b4,<10.0.0
|
2020-12-10 17:34:34 +03:00
|
|
|
cuda111 =
|
2021-04-28 11:18:24 +03:00
|
|
|
cupy-cuda111>=5.0.0b4,<10.0.0
|
2021-03-30 10:47:33 +03:00
|
|
|
cuda112 =
|
2021-04-28 11:18:24 +03:00
|
|
|
cupy-cuda112>=5.0.0b4,<10.0.0
|
2019-09-30 21:10:55 +03:00
|
|
|
# Language tokenizers with external dependencies
|
|
|
|
ja =
|
2020-10-02 11:12:44 +03:00
|
|
|
sudachipy>=0.4.9
|
2020-06-06 01:22:18 +03:00
|
|
|
sudachidict_core>=20200330
|
2019-09-30 21:10:55 +03:00
|
|
|
ko =
|
|
|
|
natto-py==0.9.0
|
|
|
|
th =
|
|
|
|
pythainlp>=2.0
|
|
|
|
|
|
|
|
[bdist_wheel]
|
|
|
|
universal = false
|
|
|
|
|
|
|
|
[sdist]
|
|
|
|
formats = gztar
|
|
|
|
|
|
|
|
[flake8]
|
2020-09-28 12:56:14 +03:00
|
|
|
ignore = E203, E266, E501, E731, W503, E741
|
2019-09-30 21:10:55 +03:00
|
|
|
max-line-length = 80
|
|
|
|
select = B,C,E,F,W,T4,B9
|
|
|
|
exclude =
|
|
|
|
.env,
|
|
|
|
.git,
|
|
|
|
__pycache__,
|
|
|
|
_tokenizer_exceptions_list.py,
|
2019-10-01 22:36:04 +03:00
|
|
|
|
|
|
|
[tool:pytest]
|
|
|
|
markers =
|
|
|
|
slow
|
2020-07-25 16:01:15 +03:00
|
|
|
|
|
|
|
[mypy]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
no_implicit_optional = True
|
|
|
|
plugins = pydantic.mypy, thinc.mypy
|