From 067b831c6dd2e71b9f9f73dea20e38c5353ee1d3 Mon Sep 17 00:00:00 2001 From: Newmu Date: Thu, 25 Sep 2014 16:11:31 -0400 Subject: [PATCH 1/2] add dependencies to setup.py (oops) --- CHANGES.txt | 1 + README | 2 ++ README.md | 2 ++ setup.py | 5 +++++ 4 files changed, 10 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 58f2cbc..79f07c8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 \ No newline at end of file diff --git a/README b/README index de1bd75..12869f1 100644 --- a/README +++ b/README @@ -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. \ No newline at end of file diff --git a/README.md b/README.md index de1bd75..12869f1 100644 --- a/README.md +++ b/README.md @@ -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. \ No newline at end of file diff --git a/setup.py b/setup.py index dfe9649..4f222c3 100644 --- a/setup.py +++ b/setup.py @@ -29,4 +29,9 @@ setup( Slater Victoroff , Aidan McLaughlin """, + install_requires=[ + "requests >= 1.2.3", + "numpy >= 1.8.1", + "scikit-image >= 0.10.1" + ], ) From 7e3cba9fd005b6ced0479ac0b7a24403bab5c112 Mon Sep 17 00:00:00 2001 From: Newmu Date: Thu, 25 Sep 2014 16:12:41 -0400 Subject: [PATCH 2/2] forgot to update version numbers --- indicoio/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/indicoio/__init__.py b/indicoio/__init__.py index d3d3739..098a4a9 100644 --- a/indicoio/__init__.py +++ b/indicoio/__init__.py @@ -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 diff --git a/setup.py b/setup.py index 4f222c3..12b7832 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ except ImportError: setup( name="IndicoIo", - version='0.4.3', + version='0.4.4', packages=[ "indicoio", "indicoio.text",