setup.py
author Christian Ebert <blacktrash@gmx.net>
Mon, 18 Jun 2007 17:49:27 +0200
branchkwmap-templates
changeset 164 d16332759801
parent 124 99dc49c5bcfb
child 219 405a9c1dc7bf
permissions -rw-r--r--
Confine activation to specific commands; drop broken archive configuration

#!/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'],
        )