diff --git a/poetry.lock b/poetry.lock index b482279..0eb1d64 100644 --- a/poetry.lock +++ b/poetry.lock @@ -545,6 +545,17 @@ files = [ {file = "distro-1.8.0.tar.gz", hash = "sha256:02e111d1dc6a50abb8eed6bf31c3e48ed8b0830d1ea2a1b78c61765c2513fdd8"}, ] +[[package]] +name = "docstring-parser" +version = "0.15" +description = "Parse Python docstrings in reST, Google and Numpydoc format" +optional = false +python-versions = ">=3.6,<4.0" +files = [ + {file = "docstring_parser-0.15-py3-none-any.whl", hash = "sha256:d1679b86250d269d06a99670924d6bce45adc00b08069dae8c47d98e89b667a9"}, + {file = "docstring_parser-0.15.tar.gz", hash = "sha256:48ddc093e8b1865899956fcc03b03e66bb7240c310fac5af81814580c55bf682"}, +] + [[package]] name = "docutils" version = "0.20.1" @@ -2694,9 +2705,9 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [extras] dev = [] noteable = ["noteable-origami", "python-ulid"] -test = [] +test = ["mypy"] [metadata] lock-version = "2.0" python-versions = ">=3.9.0,<3.13" -content-hash = "e3ab2f754cd2050de0bd4135ae10f031287ae3be33d974d5f8b2b391dce22392" +content-hash = "93f042f0f16120b7c63b5087ff0f3cc42228a0739be04a20e3f2c8274e0085b1" diff --git a/pyproject.toml b/pyproject.toml index a391000..323b3db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,6 +46,7 @@ typing-extensions = "^4.7.1" aiofiles = "^23.1.0" types-aiofiles = "^23.2.0.0" mypy = "^1.6.1" +docstring-parser = "^0.15" [tool.poetry.group.dev.dependencies] tox = "^4.4.11"