setup.py
author Tero Marttila <terom@paivola.fi>
Thu, 16 Feb 2012 10:00:55 +0200
changeset 18 58809063fe9d
parent 6 302f45534b73
child 19 59a38533f13b
permissions -rw-r--r--
setup.py: add pvl package to list of packages to install, XXX: is this the right way to install namespace packages?
from distutils.core import setup


setup(
    name        = 'pvl.backup',
    version     = '0.1',

    # code
    packages    = ['pvl', 'pvl.backup'],

    # binaries
    scripts     = ['scripts/pvlbackup-rsync-wrapper'],
)