summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2014-03-14 20:38:01 +0100
committerToshio Kuratomi <toshio@fedoraproject.org>2014-03-14 20:38:01 +0100
commit17f134ca023fff9c8e5b5ab3910dd034b37c0391 (patch)
treefdcdcde41bc188e32670b049bd9ef5d7e9ca9f3d /setup.py
parentRequire a recent enough version of pycrypto and see that playbook and vault u... (diff)
downloadansible-17f134ca023fff9c8e5b5ab3910dd034b37c0391.tar.xz
ansible-17f134ca023fff9c8e5b5ab3910dd034b37c0391.zip
distutils' requires parameter doesn't work with setuptools. Use
setuptools' instal_requires instead
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 34425e1f37..3ae7cedef9 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ from glob import glob
sys.path.insert(0, os.path.abspath('lib'))
from ansible import __version__, __author__
-from distutils.core import setup
+from setuptools import setup
# find library modules
from ansible.constants import DEFAULT_MODULE_PATH