From a3c2f3a61d9adef34576a28937a9488947af8012 Mon Sep 17 00:00:00 2001 From: Nicolas Lebedenco Date: Sun, 21 Sep 2014 13:22:29 -0300 Subject: [PATCH] Fix setup.py to import from setuptools, otherwise it will lack some options such as --single-version-externally-managed --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8b1d8fc..79ed5cb 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup, Extension +from setuptools import setup, Extension readme_conts = open("README.rst", "U").read()