From 66babc9fe6423c1dda411a19efc4eb110551b8cd Mon Sep 17 00:00:00 2001 From: Maddy Guthridge Date: Mon, 10 Jun 2024 23:29:28 +1000 Subject: [PATCH] Update name and URLs --- LICENSE | 2 +- pyproject.toml | 6 +++--- tests/parsing_test.py | 16 ++++++++-------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/LICENSE b/LICENSE index 632cf07..3ed440a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Miguel Guthridge +Copyright (c) 2024 Maddy Guthridge Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pyproject.toml b/pyproject.toml index 52cfaaa..a2b4979 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,12 +2,12 @@ name = "transdoc" version = "0.2.3" description = "A simple tool for transforming Python docstrings by embedding results from Python function calls" -authors = ["Miguel Guthridge "] +authors = ["Maddy Guthridge "] license = "MIT" readme = "README.md" -repository = "https://github.com/MiguelGuthridge/transdoc" -# documentation = "https://miguelguthridge.github.io/transdoc/" +repository = "https://github.com/MaddyGuthridge/transdoc" +# documentation = "https://maddyguthridge.github.io/transdoc/" keywords = ["documentation", "source", "transform", "parse", "pre-processor"] classifiers = [ diff --git a/tests/parsing_test.py b/tests/parsing_test.py index fe37582..2aad2f0 100644 --- a/tests/parsing_test.py +++ b/tests/parsing_test.py @@ -96,12 +96,12 @@ def test_multiline_transformation(): def fn_square_bracket(): - """{{hello[Miguel]}}""" + """{{hello[Maddy]}}""" fn_square_bracket_result = \ '''def fn_square_bracket(): - """hello, Miguel""" + """hello, Maddy""" ''' @@ -117,12 +117,12 @@ def test_square_bracket_syntax(): def fn_square_bracket_braces(): - """{{hello[Miguel with {braces}]}}""" + """{{hello[Maddy with {braces}]}}""" fn_square_bracket_braces_result = \ '''def fn_square_bracket_braces(): - """hello, Miguel with {braces}""" + """hello, Maddy with {braces}""" ''' @@ -139,12 +139,12 @@ def test_square_bracket_syntax_with_braces(): def fn_call_simple(): - """{{hello("Miguel")}}""" + """{{hello("Maddy")}}""" fn_call_simple_result = \ '''def fn_call_simple(): - """hello, Miguel""" + """hello, Maddy""" ''' @@ -160,12 +160,12 @@ def test_transformation_function_call(): def fn_call_kwargs(): - """{{hello(name="Miguel")}}""" + """{{hello(name="Maddy")}}""" fn_call_kwargs_result = \ '''def fn_call_kwargs(): - """hello, Miguel""" + """hello, Maddy""" '''