X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/8754986f0087dd6aa95c4816a509bde12044943b..a6b4d2b579bded5f7117ae1fe61f7ee9e6e89c49:/setup.py diff --git a/setup.py b/setup.py index 2e5dd7c..1a7a3f0 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,8 @@ setup(name = 'stgit', long_description = 'Push/pop utility on top of GIT', scripts = ['stg', 'gitmergeonefile.py'], packages = ['stgit', 'stgit.commands'], - data_files = [('/etc', ['stgitrc']), - ('share/stgit/templates', glob.glob('templates/*.tmpl')), - ('share/stgit/examples', glob.glob('examples/*.tmpl'))] + data_files = [('share/stgit/templates', glob.glob('templates/*.tmpl')), + ('share/stgit/examples', glob.glob('examples/*.tmpl')), + ('share/stgit/examples', ['examples/stgitrc']), + ('share/doc/stgit', glob.glob('doc/*.txt'))] )