Skip to content

Commit

Permalink
Version 2 bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Shivam Bansal committed Nov 13, 2015
1 parent 92f5112 commit 72ce686
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .gitignore
@@ -1,3 +1,4 @@
*.pyc
*.gz
*egg*
*egg*

3 changes: 1 addition & 2 deletions MANIFEST.in
@@ -1,2 +1 @@
include README.md
include easy_word_list
include README.md
11 changes: 8 additions & 3 deletions README.md
Expand Up @@ -11,26 +11,31 @@ You can install textstat either via the Python Package Index (PyPI) or from sour

To install using pip:

```python
$ pip install textstat

```

To install using easy_install:


```python
$ easy_install textstat
```

Downloading and installing from source

Download the latest version of textstat from http://pypi.python.org/pypi/textstat/

You can install it by doing the following,:

```python
$ tar xfz textstat-*.tar.gz

$ cd textstat-*/

$ python setup.py build

$ python setup.py install # as root

```

List of Functions
----
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -3,9 +3,9 @@
setup(
name='textstat',
packages=['textstat'],
version='0.1.4',
description='Calculate statistics from text',
author='Shivam Bansal, Chaitaniya Aggarwal',
version='0.2',
description='Calculate statistical features from text',
author='Shivam Bansal, Chaitanya Aggarwal',
author_email='shivam5992@gmail.com, chaitanya.citupes@gmail.com',
url='https://github.com/shivam5992/textstat',
long_description=open('README.md').read(),
Expand Down

0 comments on commit 72ce686

Please sign in to comment.