Mercurial > hg > python-allan
comparison setup.py @ 5:283be20c1964 default tip
Fix setup.py
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Tue, 24 Mar 2015 18:43:37 +0100 |
parents | 9d016a2a2702 |
children |
comparison
equal
deleted
inserted
replaced
4:9d016a2a2702 | 5:283be20c1964 |
---|---|
4 from numpy import get_include | 4 from numpy import get_include |
5 | 5 |
6 | 6 |
7 setup( | 7 setup( |
8 name='allan', | 8 name='allan', |
9 version='0.1', | 9 version='0.2', |
10 keywords='', | 10 keywords='', |
11 author='Daniele Nicolodi', | 11 author='Daniele Nicolodi', |
12 author_email='daniele.nicolodi@obspm.fr', | 12 author_email='daniele.nicolodi@obspm.fr', |
13 license='GPLv3+', | 13 license='GPLv3+', |
14 include_package_data=False, | 14 include_package_data=False, |
15 zip_safe=False, | 15 zip_safe=False, |
16 ext_modules=cythonize([Extension("_allan", ["_allan.pyx"]), ]), | |
16 py_modules=['allan'], | 17 py_modules=['allan'], |
17 ext_modules=cythonize([Extension("_allan", ["_allan.pyx"]), ]), | |
18 include_dirs=get_include() | 18 include_dirs=get_include() |
19 ) | 19 ) |