Skip to content

Commit

Permalink
added pypi description
Browse files Browse the repository at this point in the history
  • Loading branch information
tridge committed Aug 15, 2022
1 parent 744e65b commit 046ffa4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,14 @@ def run(self):
# distutils uses old-style classes, so no super()
build_py.run(self)

with open("README.md", "r", encoding = "utf-8") as fh:
long_description = fh.read()

setup (name = 'pymavlink',
version = __version__,
description = 'Python MAVLink code',
long_description = long_description,
long_description_content_type = "text/markdown",
long_description = ('A Python library for handling MAVLink protocol streams and log files. This allows for the '
'creation of simple scripts to analyse telemetry logs from autopilots such as ArduPilot which use '
'the MAVLink protocol. See the scripts that come with the package for examples of small, useful '
Expand Down

0 comments on commit 046ffa4

Please sign in to comment.