diff --git a/CHANGELOG.md b/CHANGELOG.md index 47f0d8c..c8239c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ Nuvola SDK Change Log ===================== +* New dependency for building Nuvola scripts: [Pillow](https://pypi.org/project/Pillow/) >= 4.3 * check-project: Added check that `metadata.in.json` use two spaces for indentation and no trailing whitespace. * convert-project: Save `metadata.in.json` with correct indentation and no trailing whitespace. * new-project: README.md template was updated. diff --git a/README.md b/README.md index 3f270c2..01ffb04 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ Build a Project Using Nuvola SDK * GNU Make * SVG optimizer: [Scour](https://github.com/codedread/scour) * SVG converter: Lasem, librsvg, GraphicsMagick, ImageMagick + * [Pillow](https://pypi.org/project/Pillow/) >= 4.3 * Nuvola 4.x libraries - only for `./configure --with-dbus-launcher` diff --git a/setup.py b/setup.py index 26544d0..9a17dc2 100755 --- a/setup.py +++ b/setup.py @@ -39,6 +39,9 @@ "License :: OSI Approved :: BSD License", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3 :: Only" - ] + ], + install_requires=[ + 'Pillow >= 4.3.0', + ], )