From f3d08a82349ae30eb3d0c95b77b90205bcbc5690 Mon Sep 17 00:00:00 2001 From: Jim Browne Date: Fri, 31 May 2013 16:01:08 -0700 Subject: [PATCH] Try distribute/setuptools before distutils --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index eaaef88..c6f60b1 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ import os, sys try: - from distutils.core import setup -except ImportError: from setuptools import setup +except ImportError: + from distutils.core import setup install_requires = ['boto>=2.2.1']