Mercurial > hg > python-allan
comparison 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 |
comparison
equal
deleted
inserted
replaced
3:9e56ffd701d4 | 4:9d016a2a2702 |
---|---|
1 from setuptools import setup, find_packages | 1 from setuptools import setup, find_packages |
2 from setuptools.extension import Extension | 2 from setuptools.extension import Extension |
3 from Cython.Build import cythonize | 3 from Cython.Build import cythonize |
4 from numpy import get_include | 4 from numpy import get_include |
5 | 5 |
6 VERSION = '0.1' | |
7 | 6 |
8 setup(name='allan', | 7 setup( |
9 version=VERSION, | 8 name='allan', |
10 keywords='', | 9 version='0.1', |
11 author='Daniele Nicolodi', | 10 keywords='', |
12 author_email='daniele.nicolodi@obspm.fr', | 11 author='Daniele Nicolodi', |
13 license='GPLv3+', | 12 author_email='daniele.nicolodi@obspm.fr', |
14 packages=find_packages(), | 13 license='GPLv3+', |
15 package_dir={'': '.'}, | 14 include_package_data=False, |
16 include_package_data=False, | 15 zip_safe=False, |
17 zip_safe=False, | 16 py_modules=['allan'], |
18 ext_modules = cythonize([Extension("_allan", ["_allan.pyx"]), ]), | 17 ext_modules=cythonize([Extension("_allan", ["_allan.pyx"]), ]), |
19 include_dirs = get_include()) | 18 include_dirs=get_include() |
19 ) |