Metadata-Version: 2.4
Name: gimms
Version: 0.2.3
Summary: A minimal Python package for setting up TOUGH2 model from Leapfrog, based on JPO's script.
Author-email: Angus Yeh <a.yeh@auckland.ac.nz>, John O'Sullivan <jp.osullivan@auckland.ac.nz>
License: MIT
License-File: LICENSE
Requires-Python: >=3.8
Requires-Dist: matplotlib
Requires-Dist: pypdf2
Requires-Dist: pytough
Description-Content-Type: text/markdown

gimms
=====

A minimal Python package for setting up TOUGH2 model from Leapfrog, based on JPO's script.

Usage:

    pip install .

Run tests with pytest.


## Developer

### Build and Publish

To bump version, create a tag, eg. `v0.1.0`

PyPI token is expected in ~/.pypirc

Publish to PyPI:

```console
hatch build
hatch publish
```

`hatch publish` will prompt for user and password.  Use `__token__` as user, and then paste the whole token including the first part `pypi-` as password.  This will be cached by hatch automatically.

or with token:

```console
hatch publish -u __token__ -a pypi-<token>
```



