Mercurial > hg > python-allan
annotate 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 |
rev | line source |
---|---|
3
9e56ffd701d4
Fix setup.py to install a real package
Daniele Nicolodi <daniele@grinta.net>
parents:
0
diff
changeset
|
1 from setuptools import setup, find_packages |
9e56ffd701d4
Fix setup.py to install a real package
Daniele Nicolodi <daniele@grinta.net>
parents:
0
diff
changeset
|
2 from setuptools.extension import Extension |
0 | 3 from Cython.Build import cythonize |
4 from numpy import get_include | |
5 | |
6 | |
4 | 7 setup( |
8 name='allan', | |
5 | 9 version='0.2', |
4 | 10 keywords='', |
11 author='Daniele Nicolodi', | |
12 author_email='daniele.nicolodi@obspm.fr', | |
13 license='GPLv3+', | |
14 include_package_data=False, | |
15 zip_safe=False, | |
5 | 16 ext_modules=cythonize([Extension("_allan", ["_allan.pyx"]), ]), |
4 | 17 py_modules=['allan'], |
18 include_dirs=get_include() | |
19 ) |