Mentions légales du service

Skip to content
Snippets Groups Projects
Commit cd5c4084 authored by hhakim's avatar hhakim
Browse files

Fill other info fields to publish on pypi repo. and update license to BSD 2.0.

parent 089c7143
Branches
Tags 2.10.37 2.10.38
No related merge requests found
Pipeline #833810 skipped
Copyright (c) 2021, INRIA
All rights reserved.
<<<<<<< HEAD
BSD License 2.0
Redistribution and use in source and binary forms, with or without
......@@ -9,6 +10,20 @@ modification, are permitted provided that the following conditions are met:
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of the <copyright holder> nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
=======
Copyright (c) 2021, INRIA
All rights reserved.
BSD License 2.0
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of the <copyright holder> nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
>>>>>>> 8078cda8 (Fill other info fields to publish on pypi repo. and update license to BSD 2.0.)
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INRIA BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Contacts:
......
......@@ -125,6 +125,7 @@ if(USE_GPU_MOD)
message(STATUS SIMLINK ../../../lib/${GPU_MOD_LIB} ${GPU_MOD_LIB_PPATH}/${GPU_MOD_LIB})
install(FILES ${GPU_MOD_LIB_PPATH}/${GPU_MOD_LIB} DESTINATION ${CMAKE_INSTALL_PYTHON_PREFIX}/pyfaust/lib)
endif()
set(GPU_CUDA_VERSION_PYPI_CLASSIFIER "Environment :: GPU :: NVIDIA CUDA :: 9.2")
endif()
# configure the setup.py.in into setup.py (equivalent of Makefile for Python)
......
......@@ -34,10 +34,19 @@ setup(
version = version, # cf. header
ext_modules = cythonize(PyFaust, compiler_directives={'language_level': sys.version_info.major }),
packages = [ 'pyfaust' ],
url = 'http://faust.inria.fr',
description = 'TODO',
long_description = 'TODO',
classifiers = [ 'TODO' ],
url = 'https://faust.inria.fr',
author = 'INRIA',
author_email = 'remi.gribonval@inria.fr',
description = 'FAµST python toolbox',
long_description = """The FAµST toolbox provides algorithms and data structures to decompose a given dense matrix into a product of sparse matrices in order to reduce its computational complexity (both for storage and manipulation). FaµST can be used to
speedup / reduce the memory footprint of iterative algorithms commonly used for solving high dimensional linear inverse problems.
learn dictionaries with an intrinsically efficient implementation
compute (approximate) fast Fourier transforms on graphs.
""",
classifiers = [ 'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'@GPU_CUDA_VERSION_PYPI_CLASSIFIER@'],
install_requires = [ 'pygsp', 'scipy', 'numpy', 'matplotlib>=2.0.0',
'pathlib'], #ENOTE: order matters (last pkg installed first)
license = "3-clause BSD 2.0",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment