oops
This commit is contained in:
parent
00ff3c9bb8
commit
3c6e0038bd
1 changed files with 5 additions and 1 deletions
6
setup.py
6
setup.py
|
@ -8,7 +8,11 @@ import glob
|
|||
import codecs
|
||||
import re
|
||||
from distutils.command.build_ext import build_ext
|
||||
from distutils.core import setup, Extension
|
||||
|
||||
try:
|
||||
from setuptools import setup, Extension
|
||||
except ImportError:
|
||||
from distutils.core import setup, Extension
|
||||
|
||||
have_cython = True
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue