Commit 7c3e5f2e48085461c01fe6a6513aa6be3eaf98e3

Authored by Yohann Lepage
1 parent d1f8f26e

Use setuptools instead of distutils #68

Showing 1 changed file with 4 additions and 4 deletions
setup.py
... ... @@ -25,10 +25,10 @@ to install this package.
25 25  
26 26 #--- IMPORTS ------------------------------------------------------------------
27 27  
28   -##try:
29   -## from setuptools import setup
30   -##except ImportError:
31   -from distutils.core import setup
  28 +try:
  29 + from setuptools import setup
  30 +except ImportError:
  31 + from distutils.core import setup
32 32  
33 33 #from distutils.command.install import INSTALL_SCHEMES
34 34  
... ...