From d0d0d159bbcdec5c17bdeee8d46a2c7bead8d6ca Mon Sep 17 00:00:00 2001 From: Winston Weinert Date: Fri, 8 May 2015 23:22:19 -0500 Subject: [PATCH] Use setuptools to enable dependency checking It turns out distutils cannot easily check for installed packages and makes no effort to install missing packages. Setuptools on the other hand will gladly do this for use. This way situations like #33 cannot arise. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 299c460..9bb0ef7 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup +from setuptools import setup import sys PY2 = sys.version_info[0] == 2 @@ -35,4 +35,4 @@ setup( 'Operating System :: OS Independent', 'Topic :: Software Development :: Libraries :: Python Modules', ], -) \ No newline at end of file +)