From d5551d2269a18be42f0547e5b906bd57912ca0c8 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Tue, 3 Jun 2025 13:25:59 -0400 Subject: [PATCH] added license --- LICENSE | 13 +++++++++++++ mailfmt.py | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ac101d3 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2025 Daniel Fichtinger + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/mailfmt.py b/mailfmt.py index 81e7a7f..39b32a8 100755 --- a/mailfmt.py +++ b/mailfmt.py @@ -9,7 +9,7 @@ # 1-5 words ending with a comma, followed by # 1-5 words that each start with capital letters. # Author: Daniel Fichtinger -# License: MIT +# License: ISC import textwrap import sys @@ -86,7 +86,7 @@ if __name__ == "__main__": description='Formatter for plain text email.\n"--no-*" options are NOT passed by default.', epilog=""" Author : Daniel Fichtinger -License: MIT +License: ISC Contact: daniel@ficd.ca """, formatter_class=argparse.RawDescriptionHelpFormatter,