File: setup.py

package info (click to toggle)
curator 2.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 276 kB
  • ctags: 101
  • sloc: python: 1,398; makefile: 53
file content (29 lines) | stat: -rwxr-xr-x 1,183 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
#
# Install script for tengis.
#

from distutils.core import setup

setup(name="curator",
      version="2.1",
      description="Templateable Image Gallery Generator.",
      long_description="""
Curator is a powerful script that allows one to generate Web page image
galleries with the intent of displaying photographic images on the Web, or for a
CD-ROM presentation and archiving.

It generates static Web pages only - no special configuration or running scripts
are required on the server. The script supports many file formats, hierarchical
directories, thumbnail generation and update, per-image description file with
any attributes, and 'tracks' of images spanning multiple directories. The
templates consist of HTML with embedded Python. Running this script only
requires a recent Python interpreter and the Python Imaging Library OR the
ImageMagick tools. If you've been looking for a simple yet very powerful script
to do this task you've come to the right place.""",
      license="GNU GPL",
      author="Martin Blais",
      author_email="blais@iro.umontreal.ca",
      url="http://curator.sourceforge.net",
      scripts = ['bin/curator']
     )