From 9888c781009f2d4112852f2714153c23eff04dc1 Mon Sep 17 00:00:00 2001 From: trag1c Date: Thu, 16 Feb 2023 06:26:42 +0100 Subject: [PATCH] Updated description --- README.md | 2 +- docs/index.md | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a2bc681..49544b0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Paperbush 🌿 -Paperbush is a dead easy argument parsing tool that simplifies the process of creating command-line argument parsers in Python. With Paperbush, you can define your parser in just a single line of code using a custom built-in language, which is then translated directly into the built-in `argparse` module equivalent. This means that in most cases, moving to Paperbush is just a matter of changing the parser definition, as `Paperbush.parse_args()` returns an `argparse.Namespace` object. +Paperbush is a super concise argument parsing tool that simplifies the process of creating command-line argument parsers in Python. With Paperbush, you can define your parser in just a single line of code using a custom built-in language, which is then translated directly into the built-in `argparse` module equivalent. This means that in most cases, moving to Paperbush is just a matter of changing the parser definition, as `Paperbush.parse_args()` returns an `argparse.Namespace` object. ## Installation Paperbush is available on PyPI and can be installed with `pip`, or any other Python package manager: diff --git a/docs/index.md b/docs/index.md index 3dbb1b4..20c86a3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,6 +1,6 @@ # Paperbush 🌿 -Paperbush is a dead easy argument parsing tool that simplifies the process of +Paperbush is a super concise argument parsing tool that simplifies the process of creating command-line argument parsers in Python. With Paperbush, you can define your parser in just a single line of code using a custom built-in language, which is then translated directly into the built-in `argparse` module diff --git a/pyproject.toml b/pyproject.toml index 4d651d3..f0c72f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "paperbush" version = "0.2.0" -description = "Dead easy argument parsing" +description = "Super concise argument parsing tool" authors = ["trag1c "] license = "MIT"