Merge pull request #5 from IndicoDataSolutions/dependencies

Dependencies
This commit is contained in:
Madison May
2014-09-25 16:25:05 -04:00
5 changed files with 12 additions and 2 deletions
+1
View File
@@ -9,3 +9,4 @@ v0.4.0, Fri Aug 1 -- Changed api import to lowercase, added language example
v0.4.1, Fri Aug 1 -- Updated __version__ variable to be accurate
v0.4.2, Wed Aug 6 -- Updated README to accurately reflect political analysis results
v0.4.3, Thu Sep 11 -- Added image features api and sphinx compliant documentation
v0.4.4, Thu Sep 25 -- Added dependencies installation to setup.py
+2
View File
@@ -63,3 +63,5 @@ Installation
```
pip install indicoio
```
Announcement: Indico has partnered with Experfy, a data science consulting marketplace based in the Harvard Innovation Lab. Through Experfy, we are helping our data science community members find lucrative projects and advance their skills. Please signup for Experfy at https://www.experfy.com/ to get started.
+2
View File
@@ -63,3 +63,5 @@ Installation
```
pip install indicoio
```
Announcement: Indico has partnered with Experfy, a data science consulting marketplace based in the Harvard Innovation Lab. Through Experfy, we are helping our data science community members find lucrative projects and advance their skills. Please signup for Experfy at https://www.experfy.com/ to get started.
+1 -1
View File
@@ -1,6 +1,6 @@
JSON_HEADERS = {'Content-type': 'application/json', 'Accept': 'text/plain'}
Version, version, __version__, VERSION = ('0.4.3',) * 4
Version, version, __version__, VERSION = ('0.4.4',) * 4
from text.sentiment import political, posneg
from text.sentiment import posneg as sentiment
+6 -1
View File
@@ -8,7 +8,7 @@ except ImportError:
setup(
name="IndicoIo",
version='0.4.3',
version='0.4.4',
packages=[
"indicoio",
"indicoio.text",
@@ -29,4 +29,9 @@ setup(
Slater Victoroff <slater@indicodatasolutions.com>,
Aidan McLaughlin <aidan@indicodatasolutions.com>
""",
install_requires=[
"requests >= 1.2.3",
"numpy >= 1.8.1",
"scikit-image >= 0.10.1"
],
)