From 229b93ff1c3d6cba4587b5e2478643b8cbcf2e2b Mon Sep 17 00:00:00 2001 From: Joost van Zwieten Date: Wed, 30 Nov 2022 09:48:13 +0100 Subject: [PATCH] add docstring to the top-level module In a follow-up patch `setup.py` will be replaced by a `pyproject.toml` using Flit as build system. To prepare for this change, this patch adds the `description` field of `setup.py` as a docstring to `nutils`. --- nutils/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nutils/__init__.py b/nutils/__init__.py index cbbfb79b3..10197e171 100644 --- a/nutils/__init__.py +++ b/nutils/__init__.py @@ -1,3 +1,5 @@ +'Numerical Utilities for Finite Element Analysis' + import sys import numpy from distutils.version import LooseVersion