Kaydet (Commit) 70715895 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

improve description

Change-Id: I59060690b7ed138987df07adf174cf43fadbae77
Reviewed-on: https://gerrit.libreoffice.org/38624Reviewed-by: 's avatarMarkus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: 's avatarMarkus Mohrhard <markus.mohrhard@googlemail.com>
üst 8eb92c9a
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.
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",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment