diff --git a/CHANGES.txt b/CHANGES.txt index 66d2843..f35f802 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -22,4 +22,4 @@ v0.5.0, Friday Feb 27 -- Updated to support private cloud, allows for indicorc f v0.5.1, Friday Feb 27 -- More README updates, fixed rst formatting issue, added classifiers v0.5.2, Tue March 7 -- Required API keys, configuration settings v0.5.3, Wed Apr 15 -- Added scipy to requirements, edited Readme to not break pypi page -v0.6.0, Thu May 29 -- Remove numpy / scipy dependency in favor of Pillow \ No newline at end of file +v0.6.0, Thu May 29 -- Remove numpy / scipy dependency in favor of Pillow diff --git a/README.md b/README.md index 55202ad..beb5c2f 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ pip install indicoio From source: ```bash -git clone https://github.com/IndicoDataSolutions/IndicoIo-python.git +git clone https://github.com/IndicoDataSolutions/IndicoIo-python.git python setup.py install ``` @@ -62,7 +62,7 @@ Examples >>> text_tags(test_text, top_n=1) # return only keys with top_n values {u'startups_and_entrepreneurship': 0.21888586688354486} ->>> import numpy as np +>>> import numpy as np >>> test_face = np.linspace(0,50,48*48).reshape(48,48).tolist() diff --git a/indicoio/__init__.py b/indicoio/__init__.py index 6cbaab4..f2abfb9 100644 --- a/indicoio/__init__.py +++ b/indicoio/__init__.py @@ -4,10 +4,10 @@ JSON_HEADERS = { 'Content-type': 'application/json', 'Accept': 'application/json', 'client-lib': 'python', - 'version-number': '0.6.0' + 'version-number': '0.7.0' } -Version, version, __version__, VERSION = ('0.6.0',) * 4 +Version, version, __version__, VERSION = ('0.7.0',) * 4 from indicoio.text.sentiment import political, posneg from indicoio.text.sentiment import posneg as sentiment diff --git a/setup.py b/setup.py index 808a286..b00d99a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ except ImportError: setup( name="IndicoIo", - version='0.6.0', + version='0.7.0', packages=[ "indicoio", "indicoio.text",