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" + ], )