diff --git a/README.md b/README.md index b15e223..2f62194 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![PyPI version](https://badge.fury.io/py/fordpass.svg)](https://badge.fury.io/py/fordpass) + # fordpass-python This is a basic Python wrapper around the FordPass APIs. It's more or less a straight port of @d4v3y0rk's NPM module [d4v3y0rk/ffpass](https://github.com/d4v3y0rk/ffpass-module) - props to him for his work figuring out the relevant API requests needed. @@ -11,6 +13,13 @@ This is a basic Python wrapper around the FordPass APIs. It's more or less a str * Lock the doors * Unlock the doors +## Install +Install using pip: + +``` +pip install fordpass +``` + ## Demo To test the libary there is a demo script `demo.py`. diff --git a/setup.py b/setup.py index eebcd70..626c8ee 100644 --- a/setup.py +++ b/setup.py @@ -5,10 +5,10 @@ setup( name='fordpass', - version='0.0.1', + version='0.0.2', author="Dave Clarke", author_email="info@daveclarke.me", - description="Wrapper around the FordPass APIs", + description="Python wrapper for the FordPass API for Ford vehicle information and control: start, stop, lock, unlock.", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/clarkd/fordpass-python",