From bd56e062ee927b7903b2bbc43e791a07c597c18f Mon Sep 17 00:00:00 2001 From: Joe Wreschnig Date: Mon, 22 Mar 2010 23:33:11 -0700 Subject: [PATCH] Make Pyrex optional. --- setup.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ba5af94..54a86d1 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,15 @@ import shutil import sys from distutils.core import setup, Command, Extension -from Pyrex.Distutils import build_ext + +try: + from Pyrex.Distutils import build_ext +except ImportError: + from distutils.command.build_ext import build_ext + ext_modules = [] +else: + ext_modules = [Extension( + 'bulletml._collision', [os.path.join('bulletml', '_collision.pyx')])] from distutils.command.clean import clean as distutils_clean from distutils.command.sdist import sdist as distutils_sdist @@ -116,8 +124,7 @@ if __name__ == "__main__": packages=["bulletml"], data_files=glob.glob("examples/*/*.xml") + ["examples/template.xml"], scripts=["bulletml-runner", "bulletml-to-bulletyaml"], - ext_modules=[ - Extension('bulletml._collision', ['bulletml/_collision.pyx'])], + ext_modules=ext_modules, long_description="""\ BulletML is the Bullet Markup Language. BulletML can describe the barrage of bullets in shooting games. (For example Progear, Psyvariar, -- 2.20.1