# HG changeset patch # User Björn Ricks # Date 1415024719 -3600 # Node ID 1e62ccffb395476d02b049244e426961bb6813e4 # Parent b60f56ac79237752d1830b3023557be8fc85e58f Update setup.py and README.rst diff -r b60f56ac7923 -r 1e62ccffb395 README.rst --- a/README.rst Mon Nov 03 15:17:03 2014 +0100 +++ b/README.rst Mon Nov 03 15:25:19 2014 +0100 @@ -1,7 +1,7 @@ odfcast ======= -A conversion http service based on Open-/LibreOffice, py3o and PyPDF2 +A document conversion http service based on Open-/LibreOffice, py3o and PyPDF2 Installation diff -r b60f56ac7923 -r 1e62ccffb395 setup.py --- a/setup.py Mon Nov 03 15:17:03 2014 +0100 +++ b/setup.py Mon Nov 03 15:25:19 2014 +0100 @@ -12,20 +12,23 @@ setup( name='odfcast', version=version, - description="A conversion http service based on py3o", + description="A document conversion http service based on Open-" + "/LibreOffice, py3o and PyPDF2", long_description=read("README.rst"), classifiers=[ - "Development Status :: 3 - Alpha", - "Operating System :: POSIX :: Linux", + "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='', + license='MIT License', packages=find_packages(exclude=["examples"]), include_package_data=True, - zip_safe=True, install_requires=read("requirements.txt").split(), )