Skip to content

Commit

Permalink
Update name and URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
MaddyGuthridge committed Jun 10, 2024
1 parent 9743804 commit 66babc9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <hello@miguelguthridge.com>"]
authors = ["Maddy Guthridge <hello@maddyguthridge.com>"]
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 = [
Expand Down
16 changes: 8 additions & 8 deletions tests/parsing_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
'''


Expand All @@ -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}"""
'''


Expand All @@ -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"""
'''


Expand All @@ -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"""
'''


Expand Down

0 comments on commit 66babc9

Please sign in to comment.