#!/usr/bin/python
# $Id: setup.py,v 1.9 2002/12/12 02:45:53 goodger Exp $

from distutils.core import setup

def do_setup():
    dist = setup(
          name = 'difflib',
          description = 'Python diff library',
          #long_description = '',
          url = 'http://docutils.sourceforge.net/',
          version = '0.2+',
          author = 'Python Software Foundation',
          license = 'Python',
          package_dir = {'': 'extras'},
          py_modules = ['difflib'])
    return dist

if __name__ == '__main__' :
    do_setup()
