You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
355 B
21 lines
355 B
5 months ago
|
"""
|
||
|
TextDistance.
|
||
|
Compute distance between sequences.
|
||
|
30+ algorithms, pure python implementation, common interface.
|
||
|
"""
|
||
|
|
||
|
# main package info
|
||
|
__title__ = 'TextDistance'
|
||
|
__version__ = '4.6.2'
|
||
|
__author__ = 'Gram (@orsinium)'
|
||
|
__license__ = 'MIT'
|
||
|
|
||
|
|
||
|
# version synonym
|
||
|
VERSION = __version__
|
||
|
|
||
|
|
||
|
# app
|
||
|
from .algorithms import * # noQA
|
||
|
from .utils import * # noQA
|