summaryrefslogtreecommitdiff
path: root/sandbox/rstdiff/setup.py
blob: 39049a1090c244319c8a8e10ef6ecafe6aa39a14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python

from distutils.core import setup

from version import version

setup(name='rstdiff',
      version=version,
      description='Tool for creating a diff highlighting changes from two reStructuredText input files',
      author='Stefan Merten',
      author_email='smerten@oekonux.de',
      url='http://docutils.sourceforge.net/sandbox/rstdiff/',
      license='GPL 2',
      requires=[ 'docutils' ],
      scripts=[ 'rstdiff.py' ],
      packages=[ 'treediff' ],
     )