diff --git a/CHANGES.rst b/CHANGES.rst index bed6ed8..d7b661b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,11 @@ in progress =========== +2020-06-06 0.1.1 +================ +- Update slogan + + 2020-06-06 0.1.0 ================ - First version, with command line interface diff --git a/README.rst b/README.rst index eaed4db..e6f900f 100644 --- a/README.rst +++ b/README.rst @@ -19,10 +19,17 @@ Imagecast ***** About ***** -Imagecast modifies images, optionally serving them via HTTP API. +Imagecast is like ImageMagick but for Pythonistas. +Optionally provides its features via HTTP API. + +Currently, this is based on Pillow_. However, it +might be based on Wand_ in the future. There might still be dragons. +.. _Pillow: https://pillow.readthedocs.io/ +.. _Wand: http://wand-py.org/ + ******* Install diff --git a/imagecast/__init__.py b/imagecast/__init__.py index 1c98436..ed949a6 100644 --- a/imagecast/__init__.py +++ b/imagecast/__init__.py @@ -1,3 +1,3 @@ -"""Imagecast modifies images, optionally serving them via HTTP API""" +"""Imagecast is like ImageMagick but for Pythonistas. Optionally provides its features via HTTP API.""" __appname__ = 'imagecast' __version__ = '0.1.0' diff --git a/setup.py b/setup.py index 9561b17..8b9ccd2 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup(name='imagecast', version='0.1.0', - description='Imagecast modifies images, optionally serving them via HTTP API', + description='Imagecast is like ImageMagick but for Pythonistas. Optionally provides its features via HTTP API.', long_description=README, license="AGPL 3, EUPL 1.2", classifiers=[