Automate building

This commit is contained in:
Guilhem Lavaux 2020-04-28 22:34:49 +02:00
parent 6bc0b80e39
commit 772677590c
2 changed files with 9 additions and 5 deletions

View file

@ -218,10 +218,11 @@ class BuildCMakeExt(build_ext):
CosmoTool_extension = CMakeExtension(name="cosmotool")
setup(name='cosmotool',
version='1.0.0a4',
version='1.0.0a5',
packages=["cosmotool"],
package_dir={'cosmotool': 'python/cosmotool'},
setup_requires=['cython','cffi','numexpr'],
install_requires=['numpy','cffi','numexpr','pyfftw','h5py'],
setup_requires=['cython','cffi','numpy','numexpr'],
ext_modules=[CosmoTool_extension],
description='A small cosmotool box of useful functions',
long_description=open("./README.md", 'r').read(),