summaryrefslogtreecommitdiff
path: root/uitest
diff options
context:
space:
mode:
authorHossein <hossein@libreoffice.org>2022-08-19 15:29:35 +0200
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2022-09-26 00:26:05 +0200
commitd3050ff4a1355f7ebd3d4e7ddc8fb64f2b8894dd (patch)
treea1f89cd08aaca76aba3bf5a3c6944d6ce8473f0c /uitest
parentca78fe4dc72a4cd3737e4da9af888783d52285c7 (diff)
Use Markdown instead of reStructuredText
Use Markdown markup instead of reStructuredText for uitest/packaging/README.rst Change from reStructuredText to Markdown in setup.py is done according to this guide: Making a PyPI-friendly README https://packaging.python.org/en/latest/guides/making-a-pypi-friendly-readme/ Change-Id: I12cbde53518d7ceadec034827d8cb00380df1547 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138555 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'uitest')
-rw-r--r--uitest/packaging/README.md (renamed from uitest/packaging/README.rst)3
-rw-r--r--uitest/packaging/setup.py3
2 files changed, 3 insertions, 3 deletions
diff --git a/uitest/packaging/README.rst b/uitest/packaging/README.md
index 45d8716f6586..41dacf520414 100644
--- a/uitest/packaging/README.rst
+++ b/uitest/packaging/README.md
@@ -1,4 +1,3 @@
-Connection code for LibreOffice's pyUNO
-=======================================
+# Connection code for LibreOffice's pyUNO
This code allows out-of-process communication with a LibreOffice instance. The instance can either be started by the script or a connection to a running LibreOffice instance. The code contains several safety checks for hanging and crashed LibreOffice instances.
diff --git a/uitest/packaging/setup.py b/uitest/packaging/setup.py
index 9aa32054ccc2..dcaa24512b09 100644
--- a/uitest/packaging/setup.py
+++ b/uitest/packaging/setup.py
@@ -5,7 +5,7 @@ from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
-with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
+with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
@@ -13,6 +13,7 @@ setup(
version="0.0.1",
description="Connection code for LibreOffice's pyUNO",
long_description=long_description,
+ long_description_content_type='text/markdown',
url="http://www.libreoffice.org",
author="The LibreOffice developers",
author_email="libreoffice@lists.freedesktop.org",