Skip to content
Snippets Groups Projects
Commit 25204192b6c5 authored by Guy Rozendorn's avatar Guy Rozendorn
Browse files

bringing back bdist_egg build support

parent 5655142cad2d
Branches
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