spaCy/spacy/about.py

26 lines
631 B
Python
Raw Normal View History

2016-01-15 17:57:01 +00: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
2016-02-15 00:33:39 +00:00
__title__ = 'spacy'
2016-03-08 15:58:45 +00:00
__version__ = '0.100.6'
2016-01-15 17:57:01 +00:00
__summary__ = 'Industrial-strength NLP'
__uri__ = 'https://spacy.io'
__author__ = 'Matthew Honnibal'
__email__ = 'matt@spacy.io'
__license__ = 'MIT'
__models__ = {
'en': {
'module': 'en',
'class': 'English',
'package': 'en>=1.0.0,<1.1.0',
},
'de': {
'module': 'de',
'class': 'German',
'package': 'de>=1.0.0,<1.1.0',
},
}
__default_model__ = 'en'