Mercurial > hg > python-allan
changeset 4:9d016a2a2702
Fix setup.py
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Tue, 24 Mar 2015 18:32:11 +0100 |
parents | 9e56ffd701d4 |
children | 283be20c1964 |
files | setup.py |
diffstat | 1 files changed, 13 insertions(+), 13 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Tue Mar 24 18:22:40 2015 +0100 +++ b/setup.py Tue Mar 24 18:32:11 2015 +0100 @@ -3,17 +3,17 @@ from Cython.Build import cythonize from numpy import get_include -VERSION = '0.1' -setup(name='allan', - version=VERSION, - keywords='', - author='Daniele Nicolodi', - author_email='daniele.nicolodi@obspm.fr', - license='GPLv3+', - packages=find_packages(), - package_dir={'': '.'}, - include_package_data=False, - zip_safe=False, - ext_modules = cythonize([Extension("_allan", ["_allan.pyx"]), ]), - include_dirs = 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() +)