0001-Move-README-to-reStructured-text.patch 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. From 62260e0a42dd6c1c10660f68a531c49bd6cade2e Mon Sep 17 00:00:00 2001
  2. From: Francois Wautier <francois@wautier.eu>
  3. Date: Thu, 25 Feb 2021 20:07:08 +0700
  4. Subject: [PATCH] Move README to reStructured text
  5. Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
  6. ---
  7. setup.py | 4 ++--
  8. 1 file changed, 2 insertions(+), 2 deletions(-)
  9. diff --git a/setup.py b/setup.py
  10. index 582a994..315b3bb 100644
  11. --- a/setup.py
  12. +++ b/setup.py
  13. @@ -4,7 +4,7 @@ import setuptools
  14. version = "0.2.7"
  15. -with open("README.md", "r") as fh:
  16. +with open("README.rst", "r") as fh:
  17. long_description = fh.read()
  18. setuptools.setup(
  19. @@ -16,7 +16,7 @@ setuptools.setup(
  20. author_email="francois@wautier.eu",
  21. description="Scanning Bluetooth for advertised info with asyncio.",
  22. long_description=long_description,
  23. - long_description_content_type="text/markdown",
  24. + long_description_content_type="text/x-rst",
  25. url="http://github.com/frawau/aioblescan",
  26. keywords=["bluetooth", "advertising", "hci", "ble"],
  27. license="MIT",
  28. --
  29. 2.27.0