diff --git a/README.md b/README.md index ae0f64d..24ad47b 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,13 @@ [![GitHub forks](https://img.shields.io/github/forks/devanshkv/argmark?style=flat-square)](https://github.com/devanshkv/argmark/forks) [![GitHub stars](https://img.shields.io/github/stars/devanshkv/argmark?style=flat-square)](https://github.com/devanshkv/argmark/stars) [![GitHub LICENSE](https://img.shields.io/github/license/devanshkv/argmark?style=flat-square)](https://github.com/devanshkv/argmark/LICENSE) +[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/argmark?style=flat-square)](https://pypi.org/project/argmark) +[![PyPI](https://img.shields.io/pypi/v/argmark?style=flat-square)](https://pypi.org/project/argmark) + [![codecov](https://codecov.io/gh/devanshkv/argmark/branch/master/graph/badge.svg?style=flat-square)](https://codecov.io/gh/devanshkv/argmark) -Convert argparse based executable scripts to markdown documents. It is based upon [argdown](https://github.com/9999years/argdown) but has a simpler interfaceand a cleaner code. +Convert argparse based executable scripts to markdown documents. It is based on [argdown](https://github.com/9999years/argdown) but has a simpler interfaceand a cleaner code. ### Installation ```bash pip install argmark diff --git a/setup.py b/setup.py index 3424d83..1097aee 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,19 @@ from setuptools import setup -with open("requirements.txt") as f: +with open("requirements.txt", "r") as f: required = f.read().splitlines() +with open("README.md", "r") as f: + long_description = f.read() + setup( name="argmark", version="0.1", packages=["argmark"], url="https://github.com/devanshkv/argmark", install_requires=required, + long_description=long_description, + long_description_content_type="text/markdown", author="Devansh Agarwal", author_email="devansh.kv@gmail.com", description="Convert argparse based executable scripts to markdown documents.",