From 29c4d55521a3ec090d3d10556d17cf82ded731c3 Mon Sep 17 00:00:00 2001 From: Antony Nevis Date: Sat, 6 Apr 2024 16:39:20 +1100 Subject: [PATCH] Updated Documentation: - Added a discription for PyPI --- README.md | 6 +++--- setup.py | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d185720..d46dc03 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # YAML to Markdown Converter -A Python utility to take a JSON / YAML file or a python dict / list and create a Markdown file. +A Python utility to take a JSON / YAML file or a python dict and create a Markdown file. ## Usage @@ -39,12 +39,12 @@ You can also use the command line interface to convert a JSON or YAML file to Ma #### Convert a JSON file to Markdown: ```bash -python yaml_to_markdown/convert.py --output-file output.md --json-file test.json +yaml-to-markdown --output-file output.md --json-file test.json ``` #### Convert a YAML file to Markdown: ```bash -python yaml_to_markdown/convert.py --output-file output.md --yaml-file test.yaml +yaml-to-markdown --output-file output.md --yaml-file test.yaml ``` ## Developer Guide diff --git a/setup.py b/setup.py index d9b85d6..aadb19f 100644 --- a/setup.py +++ b/setup.py @@ -11,6 +11,7 @@ setup( name="yaml-to-markdown", version=f"0.1.{ts}", + description="Converts a YAML/JSON file or python Dict to a Markdown file", packages=find_packages(where="src"), package_dir={"": "src"}, url="https://anevis.github.io/yaml-to-markdown/",