1 from setuptools
import setup
, find_packages
2 from codecs
import open
5 here
= path
.abspath(path
.dirname(__file__
))
7 # Get the long description from the README file
8 with
open(path
.join(here
, 'README.rst'), encoding
='utf-8') as f
:
9 long_description
= f
.read()
12 name
="libreoffice-connection",
14 description
="Connection code for LibreOffice's pyUNO",
15 long_description
=long_description
,
16 url
="http://www.libreoffice.org",
17 author
="The LibreOffice developers",
18 author_email
="libreoffice@lists.freedesktop.org",
21 "Development Status :: 3 - Alpha",
22 "Intended Audience :: Developers",
23 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
24 "Programming Language :: Python :: 3.2",
25 "Programming Language :: Python :: 3.3",
26 "Programming Language :: Python :: 3.4",
27 "Programming Language :: Python :: 3.5",
28 "Programming Language :: Python :: 3.6",
29 "Topic :: Office/Business :: Office Suites",
30 "Topic :: Software Development :: Libraries",
32 keywords
="office automation",
33 packages
=find_packages(),