From 7c3e5f2e48085461c01fe6a6513aa6be3eaf98e3 Mon Sep 17 00:00:00 2001 From: Yohann Lepage Date: Fri, 22 Jul 2016 23:51:05 +0200 Subject: [PATCH] Use setuptools instead of distutils #68 --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 3cd0542..08ed054 100755 --- a/setup.py +++ b/setup.py @@ -25,10 +25,10 @@ to install this package. #--- IMPORTS ------------------------------------------------------------------ -##try: -## from setuptools import setup -##except ImportError: -from distutils.core import setup +try: + from setuptools import setup +except ImportError: + from distutils.core import setup #from distutils.command.install import INSTALL_SCHEMES -- libgit2 0.21.4