Bump version to 6.4-15
[LibreOffice.git] / uitest / packaging / setup.py
blob83d0eccac04be2ed964f3ce8e819fb63c82bd3f7
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.rst'), 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 url="http://www.libreoffice.org",
17 author="The LibreOffice developers",
18 author_email="libreoffice@lists.freedesktop.org",
19 license="MPL2",
20 classifiers=[
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(),