From c1ae7266dadb7ff86422e706c7eb18411b8a7569 Mon Sep 17 00:00:00 2001 From: Lafrite Date: Thu, 14 May 2015 14:10:11 +0200 Subject: [PATCH] change distutils.core to setuptools --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a0d4326..59de801 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,9 @@ #!/usr/bin/env python -from distutils.core import setup +try: + from setuptools import setup +except ImportError: + from distutils.core import setup setup(name='pyMath', version='1.1',