mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-08 15:05:15 +02:00
tidied setup.py
This commit is contained in:
parent
e61699d5e2
commit
4656962337
1 changed files with 3 additions and 3 deletions
6
setup.py
6
setup.py
|
|
@ -22,9 +22,9 @@ ext_mods = [Extension(name='GPy.kern._src.stationary_cython',
|
|||
extra_link_args = ['-lgomp']),
|
||||
Extension(name='GPy.util.choleskies_cython',
|
||||
sources=['GPy/util/choleskies_cython.c'],
|
||||
include_dirs=[np.get_include()]+(['/System/Library/Frameworks/Accelerate.framework/Versions/Current/Frameworks/vecLib.framework/Versions/Current/Headers'] if sys.platform=='darwin' else []),
|
||||
include_dirs=[np.get_include()],
|
||||
extra_link_args = ['-lgomp'],
|
||||
extra_compile_args=compile_flags+['-std=c99']),
|
||||
extra_compile_args=compile_flags),
|
||||
Extension(name='GPy.util.linalg_cython',
|
||||
sources=['GPy/util/linalg_cython.c'],
|
||||
include_dirs=[np.get_include()],
|
||||
|
|
@ -64,7 +64,7 @@ setup(name = 'GPy',
|
|||
py_modules = ['GPy.__init__'],
|
||||
test_suite = 'GPy.testing',
|
||||
long_description=read('README.md'),
|
||||
install_requires=['numpy>=1.7', 'scipy>=0.16', 'cython>=0.22'],
|
||||
install_requires=['numpy>=1.7', 'scipy>=0.16'],
|
||||
extras_require = {'docs':['matplotlib >=1.3','Sphinx','IPython']},
|
||||
classifiers=['License :: OSI Approved :: BSD License',
|
||||
'Natural Language :: English',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue