view setup.py @ 44:49bcd77a94d7

py3o.renderers.pyuno has been released
author Björn Ricks <bjoern.ricks@intevation.de>
date Fri, 24 Oct 2014 13:20:15 +0200
parents 8a3f3427aa15
children 1e62ccffb395
line wrap: on
line source
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages

version = '0.1'


def read(filename):
    with open(filename, "r") as f:
        return f.read()

setup(
    name='odfcast',
    version=version,
    description="A conversion http service based on py3o",
    long_description=read("README.rst"),
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Operating System :: POSIX :: Linux",
        "Programming Language :: Python",
    ],
    keywords='OpenOffice PDF',
    author='Björn Ricks',
    author_email='bjoern.ricks@intevation.de',
    url='',
    license='',
    packages=find_packages(exclude=["examples"]),
    include_package_data=True,
    zip_safe=True,
    install_requires=read("requirements.txt").split(),
)
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)