Skip to content

Commit

Permalink
v0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishek Singh committed Jun 20, 2020
1 parent 5e83891 commit 981f656
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lexpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.9.5"
__version__ = "0.9.6"



Expand Down
8 changes: 1 addition & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -70,5 +64,5 @@
install_requires=DEPENDENCIES,
include_package_data=True,
classifiers=classifiers,
keywords=keywords,
keywords=keywords.split(),
)

0 comments on commit 981f656

Please sign in to comment.