From e159f2553e602fcc6faa58b5d9149a8b58953f6f Mon Sep 17 00:00:00 2001 From: Joris van Vugt Date: Mon, 16 Sep 2019 22:29:37 +0200 Subject: [PATCH] Add CI status badge --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index b0069a3..28d92eb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ # auto_cli + +[![CircleCI](https://circleci.com/gh/jvanvugt/auto_cli.svg?style=svg)](https://circleci.com/gh/jvanvugt/auto_cli) + `auto_cli` is a tool for calling Python functions directly from the command-line, without the need for writing argument parsers. Instead, the argument parser is automatically generated from the annotation of the function, including default arguments and types. When you use `auto_cli`, you can still use your Python functions from code without any changes. In fact, you can use `auto_cli` to generate a CLI for functions in a stand-alone script, or for an external library, as long as the functions have type annotations. ## Getting Started