[PATCH 2/2] Add 'stg uncommit' command
[stgit] / setup.py
index 2e5dd7c..1a7a3f0 100755 (executable)
--- 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'))]
       )