Skip to content

Commit 981f656

Browse files
author
Abhishek Singh
committed
v0.9.6
1 parent 5e83891 commit 981f656

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

lexpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.9.5"
1+
__version__ = "0.9.6"
22

33

44

setup.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@
1212

1313
from lexpy import __version__
1414

15-
LONG_DESCRIPTION = 'A lexicon is a data-structure which stores a set of words. ' \
16-
'The difference between a dictionary and a lexicon is that in a lexicon there are no values associated with the words. ' \
17-
'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). ' \
18-
'Precisely the search time is O(W) where W is the length of the word. ' \
19-
'Lexpy is pure python package which implements 2 important lexicon Data-structures Trie and Directed' \
20-
'Acyclic Word Graph(DAWG). '
2115
DISTNAME = 'lexpy'
2216

2317
AUTHOR = 'Abhishek Singh'
@@ -70,5 +64,5 @@
7064
install_requires=DEPENDENCIES,
7165
include_package_data=True,
7266
classifiers=classifiers,
73-
keywords=keywords,
67+
keywords=keywords.split(),
7468
)

0 commit comments

Comments
 (0)