X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/47e93ba96f6ca55cb4bf3701d4d5d190f25c0c49..b4d6a1c5539886c10f4d3965bd62afc793d8e912:/setup.py diff --git a/setup.py b/setup.py index eaf39c1..dc25149 100755 --- a/setup.py +++ b/setup.py @@ -13,9 +13,13 @@ setup(name = 'stgit', url = 'http://www.procode.org/stgit/', description = 'Stacked GIT', long_description = 'Push/pop utility on top of GIT', - scripts = ['stg', 'gitmergeonefile.py'], + scripts = ['stg'], packages = ['stgit', 'stgit.commands'], data_files = [('share/stgit/templates', glob.glob('templates/*.tmpl')), ('share/stgit/examples', glob.glob('examples/*.tmpl')), - ('share/stgit/examples', ['examples/stgitrc'])] + ('share/stgit/examples', ['examples/gitconfig']), + ('share/stgit/contrib', ['contrib/diffcol.sh', + 'contrib/stgbashprompt.sh', + 'contrib/stgit-completion.bash']), + ('share/doc/stgit', glob.glob('doc/*.txt'))] )