2016-01-15 20:57:01 +03:00
|
|
|
# inspired from:
|
|
|
|
# https://python-packaging-user-guide.readthedocs.org/en/latest/single_source_version/
|
|
|
|
# https://github.com/pypa/warehouse/blob/master/warehouse/__about__.py
|
|
|
|
|
2017-11-07 16:02:58 +03:00
|
|
|
__title__ = 'spacy'
|
2017-11-09 00:39:39 +03:00
|
|
|
__version__ = '2.0.2'
|
2017-01-16 16:23:08 +03:00
|
|
|
__summary__ = 'Industrial-strength Natural Language Processing (NLP) with Python and Cython'
|
2016-01-15 20:57:01 +03:00
|
|
|
__uri__ = 'https://spacy.io'
|
2017-06-01 12:52:24 +03:00
|
|
|
__author__ = 'Explosion AI'
|
|
|
|
__email__ = 'contact@explosion.ai'
|
2016-01-15 20:57:01 +03:00
|
|
|
__license__ = 'MIT'
|
2017-11-09 00:39:39 +03:00
|
|
|
__release__ = True
|
2017-03-15 19:37:18 +03:00
|
|
|
|
2017-11-07 14:00:43 +03:00
|
|
|
__docs_models__ = 'https://spacy.io/usage/models'
|
2017-03-15 19:37:18 +03:00
|
|
|
__download_url__ = 'https://github.com/explosion/spacy-models/releases/download'
|
2017-03-17 14:43:03 +03:00
|
|
|
__compatibility__ = 'https://raw.githubusercontent.com/explosion/spacy-models/master/compatibility.json'
|
2017-11-07 14:00:43 +03:00
|
|
|
__shortcuts__ = 'https://raw.githubusercontent.com/explosion/spacy-models/master/shortcuts-v2.json'
|