Skip to content
Snippets Groups Projects
Commit 07128c469925 authored by Bob Ippolito's avatar Bob Ippolito
Browse files

Merge pull request #92 from Infinidat/master

bringing back setuptools (bdist_egg build support), but only if already present
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,9 @@ ...@@ -7,6 +7,9 @@
# python -c 'import setuptools; execfile("setup.py")' bdist_egg # python -c 'import setuptools; execfile("setup.py")' bdist_egg
# #
import sys import sys
try:
from setuptools import setup, Extension, Command
except ImportError:
from distutils.core import setup, Extension, Command from distutils.core import setup, Extension, Command
from distutils.command.build_ext import build_ext from distutils.command.build_ext import build_ext
from distutils.errors import CCompilerError, DistutilsExecError, \ from distutils.errors import CCompilerError, DistutilsExecError, \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment