forked from seznam/pyoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 732 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 732 Bytes
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
"""
PyOO - Pythonic interface to Apache OpenOffice API (UNO)
Copyright (c) 2016 Seznam.cz, a.s.
"""
from distutils.core import setup
setup(
name='pyoo',
version='1.3.dev',
description='Pythonic interface to Apache OpenOffice API (UNO)',
long_description = open('README.rst').read(),
author='Miloslav Pojman',
author_email='miloslav.pojman@firma.seznam.cz',
url='https://github.com/seznam/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',
],
)