dataclass-argparser 2026.1.21.1__py3-none-any.whl

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.
@@ -0,0 +1,13 @@
1
+ """
2
+ DataclassArgParser - A utility for creating command-line argument parsers from dataclasses.
3
+
4
+ This package provides a simple way to automatically generate argparse-based command-line
5
+ interfaces from Python dataclasses, extracting help text from field metadata and
6
+ providing type-based metavars for better user experience. It also supports loading
7
+ configuration from YAML or JSON files.
8
+ """
9
+
10
+ from .parser import DataclassArgParser
11
+
12
+ __version__ = "1.0.0"
13
+ __all__ = ["DataclassArgParser"]