diff options
author | Guido Guenther <agx@sigxcpu.org> | 2007-02-11 23:07:41 +0100 |
---|---|---|
committer | Guido Guenther <agx@bogon.sigxcpu.org> | 2007-02-11 23:07:41 +0100 |
commit | 41e6419dfd337165e679ece4ae3ba310abc94db3 (patch) | |
tree | 1136e2bd547b8c9894e1d1ab0fb7501518f788b6 /setup.py | |
parent | 8517e0965163ce6b9ae22cb3e6e3ba09a9be8a68 (diff) | |
download | git-buildpackage-41e6419dfd337165e679ece4ae3ba310abc94db3.tar.gz git-buildpackage-41e6419dfd337165e679ece4ae3ba310abc94db3.tar.bz2 git-buildpackage-41e6419dfd337165e679ece4ae3ba310abc94db3.zip |
use GBPError everywhere and move commands from __init__ to command_wrappers.py
Furthermore pass '-v' in git import-orig on to git_load_dirs
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ -#!/usr/bin/env python2.3 -# Copyright (C) 2006 Guido Guenther <agx@sigxcpu.org> +#!/usr/bin/python +# Copyright (C) 2006,2007 Guido Guenther <agx@sigxcpu.org> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ setup(name = "git_build_package", author = 'Guido Guenther', author_email = 'agx@sigxcpu.org', scripts = [ 'git-buildpackage', 'git-import-dsc', 'git-import-orig'], - packages = [ 'git_buildpackage' ], + packages = [ 'gbp' ], data_files = [("/etc/git-buildpackage/", ["gbp.conf" ]),], ) |