Skip to content

Commit

Permalink
Minor adjustment to setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
FSX committed Feb 3, 2012
1 parent 76945d3 commit d0a32a7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import sys
from setuptools import Extension, setup
from Cython.Distutils import build_ext

try:
from Cython.Distutils import build_ext
except ImportError:
print('Cython is not installed. Please install Cython first.')
sys.exit()


setup(
Expand Down

0 comments on commit d0a32a7

Please sign in to comment.