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.
This commit is contained in:
Winston Weinert
2015-05-08 23:22:19 -05:00
parent 2a29e13975
commit d0d0d159bb

View File

@@ -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',
],
)
)