view setup.py @ 78:b7e4f50c75ba

Add six != 1.9 to the requirements. According to Björn, the version of six in Debigan wheezy is too old and odfcast needs at least version 1.9. For some reason it was missing from requirements.txt, so we add it now.
author Bernhard Herzog <bh@intevation.de>
date Wed, 25 Feb 2015 18:57:25 +0100
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)