mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
61 lines
1.6 KiB
Python
61 lines
1.6 KiB
Python
#
|
|
# The Python Imaging Library.
|
|
# $Id$
|
|
#
|
|
# package placeholder
|
|
#
|
|
# Copyright (c) 1999 by Secret Labs AB.
|
|
#
|
|
# See the README file for information on usage and redistribution.
|
|
#
|
|
|
|
# ;-)
|
|
|
|
VERSION = '1.1.7' # PIL version
|
|
PILLOW_VERSION = '3.2.0' # Pillow
|
|
|
|
_plugins = ['BmpImagePlugin',
|
|
'BufrStubImagePlugin',
|
|
'CurImagePlugin',
|
|
'DcxImagePlugin',
|
|
'DdsImagePlugin',
|
|
'EpsImagePlugin',
|
|
'FitsStubImagePlugin',
|
|
'FliImagePlugin',
|
|
'FpxImagePlugin',
|
|
'FtexImagePlugin',
|
|
'GbrImagePlugin',
|
|
'GifImagePlugin',
|
|
'GribStubImagePlugin',
|
|
'Hdf5StubImagePlugin',
|
|
'IcnsImagePlugin',
|
|
'IcoImagePlugin',
|
|
'ImImagePlugin',
|
|
'ImtImagePlugin',
|
|
'IptcImagePlugin',
|
|
'JpegImagePlugin',
|
|
'Jpeg2KImagePlugin',
|
|
'McIdasImagePlugin',
|
|
'MicImagePlugin',
|
|
'MpegImagePlugin',
|
|
'MpoImagePlugin',
|
|
'MspImagePlugin',
|
|
'PalmImagePlugin',
|
|
'PcdImagePlugin',
|
|
'PcxImagePlugin',
|
|
'PdfImagePlugin',
|
|
'PixarImagePlugin',
|
|
'PngImagePlugin',
|
|
'PpmImagePlugin',
|
|
'PsdImagePlugin',
|
|
'SgiImagePlugin',
|
|
'SpiderImagePlugin',
|
|
'SunImagePlugin',
|
|
'TgaImagePlugin',
|
|
'TiffImagePlugin',
|
|
'WebPImagePlugin',
|
|
'WmfImagePlugin',
|
|
'XbmImagePlugin',
|
|
'XpmImagePlugin',
|
|
'XVThumbImagePlugin']
|