The `proto` library simplifies the creation of command line applications by
inferring parser options from type signatures from functions.
+Update: This project is deprecated. There is a library that is becoming more
+well-known that implements the core idea of this library: use type-annotations
+to build a command line. The library is called `typer`.
+
+https://github.com/fastapi/typer
+
## Design Philosophy
The governing design belief is that a CLI app writer should focus on writing
@command(aliases=['alias1', 'alias2'], help="help message")
def function(arg1: type1 = default1, arg2: type2 = default 2, ...)
definition
-```
\ No newline at end of file
+```