spaCy/spacy/about.py

18 lines
779 B
Python
Raw Normal View History

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'
2018-02-02 05:39:16 +03:00
__version__ = '2.0.7'
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'
2018-02-02 05:39:16 +03:00
__release__ = True
2017-11-07 14:00:43 +03:00
__docs_models__ = 'https://spacy.io/usage/models'
__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'