spaCy/spacy/about.py

18 lines
740 B
Python
Raw Permalink 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
# fmt: off
2016-01-15 20:57:01 +03:00
2019-03-16 16:43:53 +03:00
__title__ = "spacy"
2019-07-12 18:40:00 +03:00
__version__ = "2.1.6"
__summary__ = "Industrial-strength Natural Language Processing (NLP) with Python and Cython"
__uri__ = "https://spacy.io"
__author__ = "Explosion AI"
__email__ = "contact@explosion.ai"
__license__ = "MIT"
2019-07-12 14:26:12 +03:00
__release__ = True
__download_url__ = "https://github.com/explosion/spacy-models/releases/download"
__compatibility__ = "https://raw.githubusercontent.com/explosion/spacy-models/master/compatibility.json"
__shortcuts__ = "https://raw.githubusercontent.com/explosion/spacy-models/master/shortcuts-v2.json"