setup.py
author Christian Ebert <blacktrash@gmx.net>
Mon, 23 Jul 2007 10:36:00 +0200
changeset 210 304f9ac35869
parent 124 99dc49c5bcfb
child 219 405a9c1dc7bf
permissions -rw-r--r--
kwdemo fixes and tweaks Write map arguments in repo hgrc, to simulate parsing and parsing errors. Add branch display; change demo verbosity for branch command. Display current [keyword] files additionally to demo.txt, as they might influence the result. Formatting: status indented by tab.

#!/usr/bin/env python
# $Id$

from distutils.core import setup
import hgkw.version

# specify version, Mercurial version otherwise
version = ''

hgkw.version.rememberversion(version)

setup(name='hgkw',
        version=hgkw.version.getversion(),
        description='Mercurial keyword extension (standalone)',
        author='Christian Ebert',
        author_email='blacktrash@gmx.net',
        license='GNU GPL',
        packages=['hgkw'],
        )