1#!/usr/bin/env python
2#
3# Install script for tengis.
4#
5
6from distutils.core import setup
7
8setup(name="curator",
9      version="2.1",
10      description="Templateable Image Gallery Generator.",
11      long_description="""
12Curator is a powerful script that allows one to generate Web page image
13galleries with the intent of displaying photographic images on the Web, or for a
14CD-ROM presentation and archiving.
15
16It generates static Web pages only - no special configuration or running scripts
17are required on the server. The script supports many file formats, hierarchical
18directories, thumbnail generation and update, per-image description file with
19any attributes, and 'tracks' of images spanning multiple directories. The
20templates consist of HTML with embedded Python. Running this script only
21requires a recent Python interpreter and the Python Imaging Library OR the
22ImageMagick tools. If you've been looking for a simple yet very powerful script
23to do this task you've come to the right place.""",
24      license="GNU GPL",
25      author="Martin Blais",
26      author_email="blais@iro.umontreal.ca",
27      url="http://curator.sourceforge.net",
28      scripts = ['bin/curator']
29     )
30