-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (23 loc) · 760 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""
PyOO - Pythonic interface to Apache OpenOffice API (UNO)
Copyright (c) 2016-2017 Seznam.cz, a.s.
Copyright (c) 2017 Miloslav Pojman
"""
from setuptools import setup
setup(
name='pyoo',
version='1.4.dev',
description='Pythonic interface to Apache OpenOffice API (UNO)',
long_description = open('README.rst').read(),
author='Miloslav Pojman',
author_email='[email protected]',
url='https://github.com/mila/pyoo',
py_modules=['pyoo'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Office/Business :: Office Suites',
'Topic :: Office/Business :: Financial :: Spreadsheet',
],
)