Mercurial > hg > python-allan
annotate setup.py @ 2:ff2192f47448
Minor cleanup
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Tue, 24 Mar 2015 18:10:40 +0100 |
parents | 3dcd4cfd8f82 |
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()) |