From 1d17f28aec5d6d9c2bf1102f9ab5d4d7f60e9391 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Mon, 18 May 2020 17:08:09 +0200 Subject: [PATCH] setup: now using setuptools instead of distutils to work with pip --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 5d1c45f..7e05fc3 100755 --- a/setup.py +++ b/setup.py @@ -5,8 +5,9 @@ import re import subprocess from distutils import log -from distutils.core import setup - +#from distutils.core import setup +from setuptools import setup # to work with pip + from distutils.core import Extension from distutils.sysconfig import get_python_lib