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
|
2019-09-30 21:10:55 +03:00
|
|
|
Topic :: Scientific/Engineering
|
|
|
|
|
|
|
|
[options]
|
|
|
|
zip_safe = false
|
|
|
|
include_package_data = true
|
|
|
|
scripts =
|
|
|
|
bin/spacy
|
2019-12-22 03:53:56 +03:00
|
|
|
python_requires = >=3.6
|
2019-09-30 21:10:55 +03:00
|
|
|
setup_requires =
|
|
|
|
wheel
|
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
|
2020-03-25 12:20:11 +03:00
|
|
|
thinc==8.0.0a3
|
2019-09-30 21:10:55 +03:00
|
|
|
install_requires =
|
2019-11-04 04:39:28 +03:00
|
|
|
# Our libraries
|
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
|
2020-03-25 12:20:11 +03:00
|
|
|
thinc==8.0.0a3
|
2019-09-30 21:10:55 +03:00
|
|
|
blis>=0.4.0,<0.5.0
|
2019-11-04 04:38:45 +03:00
|
|
|
wasabi>=0.4.0,<1.1.0
|
2020-01-29 19:06:46 +03:00
|
|
|
srsly>=2.0.0,<3.0.0
|
2019-11-07 13:45:22 +03:00
|
|
|
catalogue>=0.0.7,<1.1.0
|
2020-01-30 12:35:18 +03:00
|
|
|
ml_datasets
|
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
|
|
|
setuptools
|
|
|
|
numpy>=1.15.0
|
|
|
|
plac>=0.9.6,<1.2.0
|
|
|
|
requests>=2.13.0,<3.0.0
|
2019-12-25 19:29:53 +03:00
|
|
|
pydantic>=1.3.0,<2.0.0
|
2020-01-30 12:26:03 +03:00
|
|
|
tqdm>=4.38.0,<5.0.0
|
2019-09-30 21:10:55 +03:00
|
|
|
|
|
|
|
[options.extras_require]
|
2019-10-01 01:01:27 +03:00
|
|
|
lookups =
|
2020-02-25 00:15:28 +03:00
|
|
|
spacy_lookups_data>=0.0.5,<0.2.0
|
2019-09-30 21:10:55 +03:00
|
|
|
cuda =
|
|
|
|
cupy>=5.0.0b4
|
|
|
|
cuda80 =
|
|
|
|
cupy-cuda80>=5.0.0b4
|
|
|
|
cuda90 =
|
|
|
|
cupy-cuda90>=5.0.0b4
|
|
|
|
cuda91 =
|
|
|
|
cupy-cuda91>=5.0.0b4
|
|
|
|
cuda92 =
|
|
|
|
cupy-cuda92>=5.0.0b4
|
|
|
|
cuda100 =
|
|
|
|
cupy-cuda100>=5.0.0b4
|
|
|
|
# Language tokenizers with external dependencies
|
|
|
|
ja =
|
2019-11-23 16:31:04 +03:00
|
|
|
fugashi>=0.1.3
|
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]
|
|
|
|
ignore = E203, E266, E501, E731, W503
|
|
|
|
max-line-length = 80
|
|
|
|
select = B,C,E,F,W,T4,B9
|
|
|
|
exclude =
|
|
|
|
.env,
|
|
|
|
.git,
|
|
|
|
__pycache__,
|
|
|
|
_tokenizer_exceptions_list.py,
|
|
|
|
spacy/__init__.py
|
2019-10-01 22:36:04 +03:00
|
|
|
|
|
|
|
[tool:pytest]
|
|
|
|
markers =
|
|
|
|
slow
|