Skip to content
Snippets Groups Projects
  1. Jan 09, 2020
    • Guilhem Saurel's avatar
      [CMake] Review python module structure · 9a607113
      Guilhem Saurel authored
      Previously, we only had curves.so, which could be installed in
      PYTHON_SITELIB.
      
      Now, we also want to ship plot.py, so we need the following final
      structure:
      ${PYTHON_SITELIB}/
      └── curves/
          ├── __init__.py
          ├── curves.so
          └── plot.py
      
      Then we can keep the same structure in the build dir, to be able to
      run tests before any installation:
      
      build/
      └── python/
          └── curves/
              ├── __init__.pyc
              ├── curves.so
              └── plot.pyc
      
      And for this, we can once again keep the same structure in the source
      dir:
      
      python/
      └── curves/
          ├── __init__.py
          ├── curves_python.cpp
          └── plot.py
      9a607113
    • stevet's avatar
      added notebook as test · 8d35b0a4
      stevet authored
      8d35b0a4
  2. Jan 07, 2020
  3. Dec 17, 2019
  4. Dec 12, 2019
  5. Oct 08, 2019
  6. Sep 03, 2019
  7. Apr 17, 2019
  8. Apr 15, 2019
  9. Apr 12, 2019
  10. Feb 07, 2019
  11. Jan 04, 2019
  12. Jan 03, 2019
  13. Mar 13, 2017
Loading