setup.py
author Paul Crowley <paul@lshift.net>
Sat, 19 Dec 2009 19:17:34 +0000
changeset 246 92cb6640a641
parent 245 04989b539651
child 263 9f7ad3a71c90
permissions -rw-r--r--
Document the white space change in hg-ssh

# WARNING: this file is NOT meant to be directly executed, but
# run from the Makefile.

from distutils.core import setup

setup(
    name="mercurial-server",
    description="Centralized Mercurial repository manager",
    url="http://www.lshift.net/mercurial-server.html",
    version="1.0.1", # FIXME: infer this
    package_dir = {'': 'src'},
    packages = ["mercurialserver"],
    requires = ["mercurial"], # FIXME: what version?
    scripts = ['src/hg-ssh', 'src/refresh-auth'],
    data_files = [
        ('init', [
            'src/init/hginit', 
            'src/init/dot-mercurial-server', 
            'src/init/hgadmin-hgrc'
        ]),
    ],
)