00001
00002
00003
00004
00005 from distutils.core import setup
00006
00007 import globals
00008 setup(name = "imgcrush",
00009 version = globals.VERSION,
00010 description = "Lossless and lossy image optimizer for web image formats",
00011 long_description = "Compresses images using JPG, PNG and GIF and " +
00012 "selects the best possible file based on user's " +
00013 "requirements on file size or quality. " +
00014 "Can process multiple files and whole directories, " +
00015 "input image files can be any format supported by " +
00016 "ImageMagick (on which imgcrush is based) - which " +
00017 "is just about any format. Can't work with multi " +
00018 "image files and animations.",
00019 classifiers =
00020 [
00021 "Development Status :: 4 - Beta",
00022 "Environment :: Console",
00023 "Intended Audience :: Developers",
00024 "License :: OSI Approved :: BSD License",
00025 "Natural Language :: English",
00026 "Operating System :: POSIX",
00027 "Programming Language :: Python :: 2.6",
00028 "Topic :: Multimedia :: Graphics",
00029 ],
00030 author = "Ferdinand Majerech",
00031 author_email = "kiithsacmp@gmail.com",
00032 url = "https://launchpad.net/icrush",
00033 packages = ["imgcrush"],
00034 package_dir = {"imgcrush" : "."},
00035 package_data={"imgcrush": ["INSTALL.txt", "LICENSE.txt", "README.txt"]},
00036 scripts=["./imgcrush"],
00037 provides=["imgcrush (" + globals.VERSION + ")"]
00038 )
00039