Metadata-Version: 2.1
Name: no-cap
Version: 0.0.0rc0
Summary: Write once with inspection of python objects with type hinting from Python's standard library `typing` to generate a ConfigArgParser.
Home-page: https://github.com/prijatelj/no-cap
Author: Derek S. Prijatelj
Author-email: dprijate@nd.edu
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

## No CAP: Typing to ConfigArgParse

Write once with inspection of type hinted python objects from Python's standard library [typing](https://docs.python.org/3/library/typing.html) to generate a ConfigArgParser.
[ConfigArgParser](https://github.com/bw2/ConfigArgParse) is a drop in replacement for python's argparse that adds support for parsing configuration files and environment variables in addition to argparse's command line interface.
Type hinting your python objects should be enough to generate a hierarchical ConfigArgParser automtically through inspection.

If you want to generate a ConfigArgParser from your docstrings, see [docstr](https://github.com/prijatelj/docstr), which will depend upon this project.

Considering using `typing_inspect`.
