Mercurial > hg > python-allan
view setup.py @ 4:9d016a2a2702
Fix setup.py
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Tue, 24 Mar 2015 18:32:11 +0100 |
parents | 9e56ffd701d4 |
children | 283be20c1964 |
line wrap: on
line source
from setuptools import setup, find_packages from setuptools.extension import Extension from Cython.Build import cythonize from numpy import get_include setup( name='allan', version='0.1', keywords='', author='Daniele Nicolodi', author_email='daniele.nicolodi@obspm.fr', license='GPLv3+', include_package_data=False, zip_safe=False, py_modules=['allan'], ext_modules=cythonize([Extension("_allan", ["_allan.pyx"]), ]), include_dirs=get_include() )