Metadata-Version: 2.1
Name: esm-tools
Version: 6.60.3
Summary: ESM Tools external infrastructure for Earth System Modelling
Home-page: https://github.com/esm-tools/esm_tools
Author: The ESM Tools Team
Author-email: ['dirk.barbi@awi.de', 'paul.gierz@awi.de', 'miguel.andres-martinez@awi.de', 'deniz.ural@awi.de', 'jan.streffing@awi.de', 'sebastian.wahl@geomar.de', 'kai.himstedt@dkrz.de']
License: GNU General Public License v2
Keywords: esm_tools
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.6, <3.13
License-File: LICENSE
Requires-Dist: Click >=8.0.4
Requires-Dist: PyGithub ==1.55
Requires-Dist: colorama ==0.4.5
Requires-Dist: f90nml ==1.4.2
Requires-Dist: gfw-creator ==0.2.2
Requires-Dist: gitpython ==3.1.41
Requires-Dist: h5netcdf >=0.8.1
Requires-Dist: jinja2 ==3.1.6
Requires-Dist: loguru ==0.6.0
Requires-Dist: numpy >=1.19.5
Requires-Dist: packaging >=24.0
Requires-Dist: pandas >=1.1.5
Requires-Dist: psutil ==5.9.1
Requires-Dist: pydantic >=1.10.13
Requires-Dist: pytest ==7.1.2
Requires-Dist: pyyaml ==6.0.1
Requires-Dist: questionary ==1.10.0
Requires-Dist: ruamel.yaml.clib ==0.2.7
Requires-Dist: ruamel.yaml ==0.17.32
Requires-Dist: semver ==2.13.0
Requires-Dist: sqlalchemy >=1.4.39
Requires-Dist: tabulate ==0.8.10
Requires-Dist: tqdm ==4.66.3
Requires-Dist: typing-extensions >=4.1.1
Requires-Dist: xdgenvpy ==2.3.5

=========
ESM Tools
=========

Documentation
-------------

.. image:: https://readthedocs.org/projects/esm-tools/badge/?version=latest

For our complete documentation, please check https://esm-tools.readthedocs.io/en/latest/index.html.

How to cite this software
-------------------------
To cite ESM-Tools, please use the following DOI: https://zenodo.org/doi/10.5281/zenodo.3737927. This DOI represents all versions of the software, and will always pointing to the latest version available on https://zenodo.org.


Before you continue
-------------------

You will need python 3 (possibly version 3.6 or newer), a version of git that is not ancient (everything newer than 2.10 should be good), and up-to-date pip (``pip install -U pip``) to install the `esm_tools`. That means that on the supported machines, you could for example use the following settings:

albedo::

    $ module load git
    $ module load python

levante.dkrz.de::

    $ module load git
    $ module load python3

glogin.hlrn.de / blogin.hlrn.de::

    $ module load git
    $ module load anaconda3

juwels.fz-juelich.de::

    $ module load Stages/2022
    $ module load git
    $ module load Python/3.9.6

aleph::

    $ module load git
    $ module load python

Note that some machines might raise an error ``conflict netcdf_c`` when loading ``anaconda3``. In that case you will need to swap ``netcdf_c`` with ``anaconda3``::

    $ module unload netcdf_c
    $ module load anaconda3



Installing
----------

1. First, make sure you add the following lines to one of your login or profile files, i.e. ``~/.bash_profile``, ``~/.bashrc``, ``~/.profile``, etc.::

        $ export PATH=$PATH:~/.local/bin
        $ export LC_ALL=en_US.UTF-8
        $ export LANG=en_US.UTF-8

2. Inside the same login or profile file, add also the ``module`` commands necessary for the HPC system you are using (find the lines in the section above).

3. You can choose to source now your login or profile file, so that the ``module`` and ``export`` commands are run (e.g. ``$ source ~/.bash_profile``).

4. To use the new version of the ESM-Tools, now rewritten in Python, clone this repository::

        $ git clone https://github.com/esm-tools/esm_tools.git

5. Then, run the ``install.sh``::

        $ ./install.sh

You should now have the command line tools ``esm_master`` and ``esm_runscripts``, which replace the old version.


=======
History
=======

0.1.0 (2020-02-17)
------------------

* First release on gitlab.awi.de.
