From 418d5f15b8863f89c8bf72291333f79296451333 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Thu, 5 Oct 2023 22:59:37 +0300 Subject: [PATCH] readme: Update --- README.md | 1 - thalassa/__init__.py | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 508f280..33a552a 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,6 @@ Adding support for new solvers is relatively straight-forward. 1. Install the binary dependencies: - `python >= 3.9` -- `geos` 2. Install from PyPI with: diff --git a/thalassa/__init__.py b/thalassa/__init__.py index 88dba4c..80105ee 100644 --- a/thalassa/__init__.py +++ b/thalassa/__init__.py @@ -1,3 +1,7 @@ +""" +Thalassa is a library for visualizing unstructured mesh data with a focus on large scale sea level data + +""" from __future__ import annotations from .api import open_dataset @@ -7,6 +11,7 @@ from .plotting import plot_ts from .utils import crop + __all__: list[str] = [ "crop", "normalize",