-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·32 lines (29 loc) · 962 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
29
30
31
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
import ooolib
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name="ooolib-python",
version=ooolib.version_number(),
description="Package for creating OpenDocument Format(ODF) spreadsheets.",
author="Joseph Colton",
author_email="[email protected]",
maintainer=u"Zdeněk Böhm",
maintainer_email="[email protected]",
license='MIT',
url="https://github.com/zbohm/python-ooolib",
long_description=long_description,
packages=find_packages(),
package_data={
"ooolib": ["tests/fixtures/test-cells.ods"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)