From ed2f440ad5b3a90f8007486b534825d39031ce62 Mon Sep 17 00:00:00 2001 From: Mark Piper Date: Fri, 3 Nov 2023 11:43:44 -0600 Subject: [PATCH] More test edits --- README.rst | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.rst b/README.rst index 17a3aa4..bcd1051 100644 --- a/README.rst +++ b/README.rst @@ -5,19 +5,19 @@ pymt_heatf This is an example of building a model, written in Fortran and wrapped in Python with the `babelizer `_, with the `meson-python `_ build system -using a *pyproject.toml* file to describe the build. +using only a *pyproject.toml* file for project metadata. Build/Install ------------- -This is a sketch of how to build and install this project. +This is a sketch of how to build and install this project with either ``conda`` or ``pip``. With conda .......... -1. Create a conda environment from the *environment.yml* file and activate it +1. Create a conda environment from the included *environment.yml* file and activate it 2. Build/install the `Fortran BMI example `_ -3. Build/install this project with: +3. Build/install the project with: .. code-block:: bash @@ -29,15 +29,15 @@ With pip Make, CMake, and a Fortran compiler are required. 1. Create a virtual environment -2. Build/install the `Fortran BMI specification `_ (it's not installable through ``pip``) -3. Build/install the `Fortran BMI example `_ -4. Install the build system requirements through ``pip``: +2. Install the build system requirements through ``pip``: .. code-block:: bash $ pip install meson-python meson ninja cython numpy bmipy -5. Build/install this project with: +3. Build/install the `Fortran BMI specification `_ (it's not installable through ``pip``) +4. Build/install the `Fortran BMI example `_ +5. Build/install the project with: .. code-block:: bash @@ -58,4 +58,4 @@ Import the *pymt* component: >>> from pymt.MODELS import HeatModelF -Try the examples in the `examples` directory. +Try the examples in the *examples* directory.