Skip to content

Commit 1b65a0f

Browse files
author
Abhishek Singh
committed
Changed the version and description for PyPi
1 parent 0e98c99 commit 1b65a0f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
![Logo](https://github.com/aosingh/lexpy/blob/master/images/lexpylogo.png)
22

3+
[![PyPI version](https://badge.fury.io/py/lexpy.svg)](https://pypi.python.org/pypi/lexpy)
34
[![Travis](https://travis-ci.org/aosingh/lexpy.svg?branch=master)](https://travis-ci.org/aosingh/lexpy)
45
[![Coverage Status](https://coveralls.io/repos/github/aosingh/lexpy/badge.svg?branch=master)](https://coveralls.io/github/aosingh/lexpy?branch=master)
56
[![Maintainability](https://api.codeclimate.com/v1/badges/60626f81c0db0c5d8dcd/maintainability)](https://codeclimate.com/github/aosingh/lexpy/maintainability)
@@ -8,7 +9,7 @@
89
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
910
for faster searches(of words, prefixes and wildcard patterns). Precisely the search time is O(W) where W is the length of the word.
1011

11-
2 important Lexicon datastructures are:
12+
2 important Lexicon data-structures are:
1213
1. Trie.
1314
3. Directed Acyclic Word Graph(DAWG).
1415

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
AUTHOR = 'Abhishek Singh'
66
MAINTAINER = 'Abhishek Singh'
77
MAINTAINER_EMAIL = 'aosingh@asu.edu'
8-
DESCRIPTION = ('Python package for lexicons.')
8+
DESCRIPTION = ('Python package for lexicon.')
99
LICENSE = 'GNU GPLv3'
1010
URL = 'https://github.com/aosingh/lexpy'
11-
VERSION = '0.1.1'
11+
VERSION = '0.8'
1212

1313
PACKAGES = ['lexpy']
1414

0 commit comments

Comments
 (0)