fix mismatching gb_Trace_StartRange and gb_Trace_EndRage
[LibreOffice.git] / uitest / packaging / setup.py
blobdcaa24512b09b3bbf998e1eb83074dcce4228597
1 from setuptools import setup, find_packages
2 from codecs import open
3 from os import path
5 here = path.abspath(path.dirname(__file__))
7 # Get the long description from the README file
8 with open(path.join(here, 'README.md'), encoding='utf-8') as f:
9 long_description = f.read()
11 setup(
12 name="libreoffice-connection",
13 version="0.0.1",
14 description="Connection code for LibreOffice's pyUNO",
15 long_description=long_description,
16 long_description_content_type='text/markdown',
17 url="http://www.libreoffice.org",
18 author="The LibreOffice developers",
19 author_email="libreoffice@lists.freedesktop.org",
20 license="MPL2",
21 classifiers=[
22 "Development Status :: 3 - Alpha",
23 "Intended Audience :: Developers",
24 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
25 "Programming Language :: Python :: 3.2",
26 "Programming Language :: Python :: 3.3",
27 "Programming Language :: Python :: 3.4",
28 "Programming Language :: Python :: 3.5",
29 "Programming Language :: Python :: 3.6",
30 "Topic :: Office/Business :: Office Suites",
31 "Topic :: Software Development :: Libraries",
33 keywords="office automation",
34 packages=find_packages(),