setup.py
author Paul Crowley <paul@lshift.net>
Fri, 17 Dec 2010 15:08:23 +0000
changeset 263 9f7ad3a71c90
parent 245 04989b539651
child 311 3cbde66305e4
permissions -rw-r--r--
Bump version number to 1.1; big documentation update; correct dates; add to NEWS and CREDITS.

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