google-docstring-parser 0.0.1__tar.gz → 0.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: google-docstring-parser
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: A lightweight, efficient parser for Google-style Python docstrings that converts them into structured dictionaries.
5
5
  Author: Vladimir Iglovikov
6
6
  Maintainer: Vladimir Iglovikov
@@ -2,3 +2,7 @@
2
2
 
3
3
  A lightweight, efficient parser for Google-style Python docstrings that converts them into structured dictionaries.
4
4
  """
5
+
6
+ from .google_docstring_parser import parse_google_docstring
7
+
8
+ __all__ = ["parse_google_docstring"]
@@ -23,6 +23,8 @@ from typing import Any
23
23
 
24
24
  from docstring_parser import parse
25
25
 
26
+ __all__ = ["parse_google_docstring"]
27
+
26
28
 
27
29
  def _extract_sections(docstring: str) -> dict[str, str]:
28
30
  """Extract sections from a docstring.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: google-docstring-parser
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: A lightweight, efficient parser for Google-style Python docstrings that converts them into structured dictionaries.
5
5
  Author: Vladimir Iglovikov
6
6
  Maintainer: Vladimir Iglovikov
@@ -5,7 +5,7 @@ requires = [ "setuptools>=45", "wheel" ]
5
5
 
6
6
  [project]
7
7
  name = "google-docstring-parser"
8
- version = "0.0.1"
8
+ version = "0.0.2"
9
9
 
10
10
  description = "A lightweight, efficient parser for Google-style Python docstrings that converts them into structured dictionaries."
11
11
  readme = "README.md"