#! /usr/bin/env python
#
# ScanErrLog
# (C) Jerome Alet <alet@unice.fr> 2000
# You're welcome to redistribute this software under the
# terms of the GNU General Public Licence version 2.0
# or, at your option, any higher version.
#
# You can read the complete GNU GPL in the file COPYING
# which should come along with this software, or visit
# the Free Software Foundation's WEB site http://www.fsf.org
#
# $Id: setup.py,v 1.2 2000/10/04 13:11:18 jerome Exp $

from distutils.core import setup

import scanerrlog

setup(name = "scanerrlog", version = scanerrlog.__version__,
      licence = "GNU GPL",
      description = scanerrlog.__doc__,
      author = "Jerome Alet",
      author_email = "alet@unice.fr",
      url = "http://cortex.unice.fr/~jerome/scanerrlog/",
      scripts = [ "scanerrlog.py" ])

