Skip to content

Commit

Permalink
Fix readthedocs build
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejlach committed Sep 3, 2015
1 parent 90469de commit 72b874d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,14 @@
from distutils.core import setup
from qpython import __version__

import numpy
import os

try:
import numpy
include_dirs = [numpy.get_include()]
except:
include_dirs = []

try:
from Cython.Build import cythonize
except ImportError:
Expand Down Expand Up @@ -49,7 +54,7 @@ def read(fname):
license = 'Apache License Version 2.0',

ext_modules = ext_modules,
include_dirs = [numpy.get_include()],
include_dirs = include_dirs,

keywords = ['kdb+', 'q'],
classifiers=[
Expand Down

0 comments on commit 72b874d

Please sign in to comment.