From 71f850cd6846e589f411a98dfb98179faeb31c71 Mon Sep 17 00:00:00 2001 From: paretech Date: Mon, 11 Sep 2017 20:11:40 -0400 Subject: [PATCH] Added PyPI badge. --- HISTORY.rst | 15 +++++++++++++++ README.rst | 11 +++++++++-- setup.py | 2 +- 3 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 HISTORY.rst diff --git a/HISTORY.rst b/HISTORY.rst new file mode 100644 index 0000000..47ed51a --- /dev/null +++ b/HISTORY.rst @@ -0,0 +1,15 @@ +.. :changelog: + +Release History +--------------- + +0.0.1 (2017-09-11) +++++++++++++++++++ + +- Fixed RST typo that caused description to render unexpectedly on PyPI and GitHub. + +0.0.0 (2017-09-10) +++++++++++++++++++ + +- First release on PyPI. +- Functional but incomplete. diff --git a/README.rst b/README.rst index f3ff29b..0bcb392 100755 --- a/README.rst +++ b/README.rst @@ -4,9 +4,12 @@ .. image:: https://coveralls.io/repos/github/paretech/klvdata/badge.svg?branch=master :target: https://coveralls.io/github/paretech/klvdata?branch=master +.. image:: https://img.shields.io/pypi/v/klvdata.svg + :target: https://pypi.org/project/klvdata/ + What? ----- -KLV_Data is a Python library for parsing and constructing Key Length Value (KLV_) formatted binary streams. Common uses of the library would be parsing and displaying `MISB ST`_ 0601 Unmanned Air System (UAS) metadata from `STANAG 4609`_ compliant `MPEG-2 Transport Streams (TS) (MPEG-TS)`_. Note that KLV_Data alone cannot de-mux KLV data from an MPEG-2 TS, but programs like FFmpeg_ and GStreamer_ can be used with KLV_Data in the workflow to perform the function. +Klvdata is a Python library for parsing and constructing Key Length Value (KLV_) formatted binary streams. Common uses of the library would be parsing and displaying `MISB ST`_ 0601 Unmanned Air System (UAS) metadata from `STANAG 4609`_ compliant `MPEG-2 Transport Streams (TS) (MPEG-TS)`_. Note that klvdata alone cannot de-mux KLV data from an MPEG-2 TS, but programs like FFmpeg_ and GStreamer_ can be used with klvdata in the workflow to perform the function. .. _KLV: https://en.wikipedia.org/wiki/KLV .. _STANAG 4609: http://www.gwg.nga.mil/misb/docs/nato_docs/STANAG_4609_Ed3.pdf @@ -124,7 +127,11 @@ If you have FFmpeg installed and want to try it on real video from a drone with [...] - + +Documentation +------------- +Documentation is available at https://paretech.github.io/klvdata. + Contributing ------------ Contributions are welcome! \ No newline at end of file diff --git a/setup.py b/setup.py index 659860d..9627709 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='0.0.0', + version='0.0.1', description='A Python library for parsing MISB/STANAG 4609 Key Length Value (KLV) metadata.', long_description=long_description,