diff options
author | Toshio Kuratomi <toshio@fedoraproject.org> | 2014-03-14 20:38:01 +0100 |
---|---|---|
committer | Toshio Kuratomi <toshio@fedoraproject.org> | 2014-03-14 20:38:01 +0100 |
commit | 17f134ca023fff9c8e5b5ab3910dd034b37c0391 (patch) | |
tree | fdcdcde41bc188e32670b049bd9ef5d7e9ca9f3d /setup.py | |
parent | Require a recent enough version of pycrypto and see that playbook and vault u... (diff) | |
download | ansible-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |