summaryrefslogtreecommitdiff
path: root/uitest
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-06-10 07:30:08 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-06-10 08:33:56 +0200
commit7071589519f3bc63d27941ea38332b4212dde101 (patch)
treeb8f7f1eb8a2f59739ecb52b72efb089fd01e4a94 /uitest
parent8eb92c9a968d1c3855da0fd15745e0f10810eadd (diff)
improve description
Change-Id: I59060690b7ed138987df07adf174cf43fadbae77 Reviewed-on: https://gerrit.libreoffice.org/38624 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'uitest')
-rw-r--r--uitest/packaging/README.rst4
-rw-r--r--uitest/packaging/setup.py10
2 files changed, 13 insertions, 1 deletions
diff --git a/uitest/packaging/README.rst b/uitest/packaging/README.rst
index e69de29bb2d1..45d8716f6586 100644
--- a/uitest/packaging/README.rst
+++ b/uitest/packaging/README.rst
@@ -0,0 +1,4 @@
+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 8e4fdddac7b9..83d0eccac04b 100644
--- a/uitest/packaging/setup.py
+++ b/uitest/packaging/setup.py
@@ -1,10 +1,18 @@
from setuptools import setup, find_packages
+from codecs import open
+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:
+long_description = f.read()
setup(
name="libreoffice-connection",
version="0.0.1",
description="Connection code for LibreOffice's pyUNO",
- long_description="",
+ long_description=long_description,
url="http://www.libreoffice.org",
author="The LibreOffice developers",
author_email="libreoffice@lists.freedesktop.org",