From 5a993698122840463c68033e2c3ca21d63d3807b Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Wed, 27 Sep 2023 21:02:05 -0400 Subject: [PATCH] normand.py: add comment about the portable module Change-Id: I8e7792f0864bdb0c7786eabcc0a46e00122734b7 Signed-off-by: Philippe Proulx --- normand/normand.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/normand/normand.py b/normand/normand.py index c4c0e2f..7941d9d 100644 --- a/normand/normand.py +++ b/normand/normand.py @@ -21,6 +21,14 @@ # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# This module is the portable Normand processor. It offers both the +# parse() function and the command-line tool (run the module itself) +# without external dependencies except a `typing` module for Python 3.4. +# +# Feel free to copy this module file to your own project to use Normand. +# +# Upstream repository: . + __author__ = "Philippe Proulx" __version__ = "0.2.0" __all__ = [ -- 2.34.1