File: setup_difflib.py

package info (click to toggle)
python-docutils 0.3.7-2sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,872 kB
  • ctags: 2,908
  • sloc: python: 27,538; lisp: 641; makefile: 102
file content (20 lines) | stat: -rw-r--r-- 547 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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()