Mercurial > hg > python-allan
annotate setup.py @ 0:3dcd4cfd8f82
Import
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Fri, 18 Apr 2014 18:44:54 +0200 |
parents | |
children | 9e56ffd701d4 |
rev | line source |
---|---|
0 | 1 from distutils.core import setup |
2 from distutils.extension import Extension | |
3 from Cython.Build import cythonize | |
4 from numpy import get_include | |
5 | |
6 ext_modules = cythonize([Extension("_allan", ["_allan.pyx"]), ]) | |
7 | |
8 setup(ext_modules = ext_modules, | |
9 include_dirs = get_include()) |