From 91f919b07921deb4aa62509cb4bb38dd9a9e4a5a Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Keck <jean-baptiste.keck@imag.fr> Date: Wed, 18 Sep 2019 11:30:15 +0200 Subject: [PATCH] fixed regression in setup.py.in --- setup.py.in | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/setup.py.in b/setup.py.in index 0af718ed2..1b5557ca5 100644 --- a/setup.py.in +++ b/setup.py.in @@ -342,17 +342,6 @@ if enable_cpp is "ON": ext_modules.append(ext[ex]) data_files = [] -# if "@WITH_GPU@" is "ON": - # cl_src_dirs = ["cl_src", "cl_src/kernels", - # "cl_src/advection", "cl_src/remeshing"] - # for cl_dir in cl_src_dirs: - # data_files.append( - # ('./hysop/gpu/' + cl_dir, - # ['@CMAKE_SOURCE_DIR@/hysop/gpu/' + cl_dir + '/' - # + cl_file - # for cl_file in os.listdir( - # '@CMAKE_SOURCE_DIR@/hysop/gpu/' + cl_dir + '/') - # if cl_file[0] != '.' and cl_file[0] != '#' and cl_file[-3:] == '.cl'])) descr = 'Hybrid Computation with Particles.' authors = 'G.H Cottet, J.M Etancelin, J.B Keck, C.Mimeau, F.Pérignon, C. Picard' @@ -363,8 +352,8 @@ config = Configuration( description=descr, author=authors, author_email='hysop-members@lists.forge.imag.fr', - url='https://forge.imag.fr/projects/hysop/', - license='GNU General Public License (GPLv3)', + url='https://gricad-gitlab.univ-grenoble-alpes.fr/particle_methods/hysop', + license='Apache Licence, Version 2.0 (APLv2)', package_dir={'': '@CMAKE_SOURCE_DIR@'}, ext_modules=ext_modules, packages=packages, -- GitLab