From: Martin Quinson Date: Sun, 30 Jun 2019 15:11:10 +0000 (+0200) Subject: Document the native dependencies of the pip package in its description X-Git-Tag: v3.23.2~53 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/aea841b4127bacfa23de320d95bbd8efec2b9a08 Document the native dependencies of the pip package in its description --- diff --git a/setup.py b/setup.py index 8cb8287810..37af4d2c09 100755 --- a/setup.py +++ b/setup.py @@ -82,9 +82,9 @@ setup( "large-scale distributed systems such as Grids, Clouds, HPC or P2P " "systems. It can be used to evaluate heuristics, prototype applications " "or even assess legacy MPI applications.\n\n" - "This package contains a native library. Please install cmake boost and a " - "C++ compiler before using pip. On Debian/Ubuntu, this is as easy as\n" - "sudo apt install g++ gcc cmake libboost-all-dev"), + "This package contains a native library. Please install cmake, boost, pybind11 and a " + "C++ compiler before using pip3. On Debian/Ubuntu, this is as easy as\n" + "sudo apt install cmake libboost-dev pybind11-dev g++ gcc"), ext_modules=[CMakeExtension('simgrid')], cmdclass=dict(build_ext=CMakeBuild), install_requires=['pybind11>=2.3'],