diff --git a/lexpy/__init__.py b/lexpy/__init__.py index efb2882..e6f2355 100644 --- a/lexpy/__init__.py +++ b/lexpy/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.9.5" +__version__ = "0.9.6" diff --git a/setup.py b/setup.py index 7d7e088..5a1c826 100644 --- a/setup.py +++ b/setup.py @@ -12,12 +12,6 @@ from lexpy import __version__ -LONG_DESCRIPTION = 'A lexicon is a data-structure which stores a set of words. ' \ - 'The difference between a dictionary and a lexicon is that in a lexicon there are no values associated with the words. ' \ - 'A lexicon is similar to a list of words or a set, but the internal representation is different and optimized for faster searches(of words, prefixes and wildcard patterns). ' \ - 'Precisely the search time is O(W) where W is the length of the word. ' \ - 'Lexpy is pure python package which implements 2 important lexicon Data-structures Trie and Directed' \ - 'Acyclic Word Graph(DAWG). ' DISTNAME = 'lexpy' AUTHOR = 'Abhishek Singh' @@ -70,5 +64,5 @@ install_requires=DEPENDENCIES, include_package_data=True, classifiers=classifiers, - keywords=keywords, + keywords=keywords.split(), ) \ No newline at end of file