Mercurial > odfcast
changeset 56:1e62ccffb395
Update setup.py and README.rst
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Mon, 03 Nov 2014 15:25:19 +0100 |
parents | b60f56ac7923 |
children | 423f99732a80 |
files | README.rst setup.py |
diffstat | 2 files changed, 9 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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(), )