From 73ed1f2d5d0488095ba636d56805ada67d714a23 Mon Sep 17 00:00:00 2001 From: mandeepbhutani Date: Sat, 20 Feb 2016 17:43:46 -0600 Subject: [PATCH] Replaced distutils with setuptools and unpinned package dependency --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index a70364e..4d68c10 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,4 @@ -from distutils.core import setup - +from setuptools import setup setup( name = 'indeed', version = '0.0.4', @@ -7,6 +6,6 @@ author = 'Indeed Labs', author_email = 'labs-team@indeed.com', packages = ['indeed'], - install_requires=['requests==2.0.0'], + install_requires=['requests>=2.9.1'], url = "https://github.com/indeedlabs/indeed-python", )