Remove the possibility to use PIL.

This commit is contained in:
Simon Conseil
2013-11-09 00:31:36 +01:00
parent bf91e6bdf4
commit 3398d5f43a

View File

@@ -3,12 +3,7 @@
import os
from setuptools import setup
requires = ['argh', 'clint', 'jinja2', 'Markdown', 'pilkit']
try:
from PIL import Image, ImageOps # NOQA
except ImportError:
requires += ['Pillow']
requires = ['argh', 'clint', 'jinja2', 'Markdown', 'Pillow', 'pilkit']
entry_points = {
'console_scripts': ['sigal = sigal:main']