view setup.py @ 94:2ef34abbad8d 1.5

Use http error code 422 in CheckView when a merge is not possible. Previously the response used the code 500 in this case. This is not useful because it's not an internal server error when the check whether a PDF file can be merged fails because that's the point of the CheckView. The code used now means "Unprocessable Entity" and fits better. Part of mpuls/issue6009
author Bernhard Herzog <bh@intevation.de>
date Fri, 28 Apr 2017 20:56:22 +0200
parents 1e62ccffb395
children
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 document conversion http service based on Open-"
    "/LibreOffice, py3o and PyPDF2",
    long_description=read("README.rst"),
    classifiers=[
        "Development Status :: 4 - Beta",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        "Topic :: Internet :: WWW/HTTP :: HTTP Servers",
        "Topic :: Text Processing :: General",
        "License :: OSI Approved :: MIT License",
    ],
    keywords='OpenOffice PDF',
    author='Björn Ricks',
    author_email='bjoern.ricks@intevation.de',
    url='',
    license='MIT License',
    packages=find_packages(exclude=["examples"]),
    include_package_data=True,
    install_requires=read("requirements.txt").split(),
)
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)