chiark
/
gitweb
/
~mdw
/
stgit
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add the tutorial back to the repository
[stgit]
/
setup.py
diff --git
a/setup.py
b/setup.py
index fbfca9662e36baf8deec24231e6480065d242534..1a7a3f011088887d9e8e27ba5266c6adde33c6af 100755
(executable)
--- a/
setup.py
+++ b/
setup.py
@@
-1,5
+1,6
@@
#!/usr/bin/env python
#!/usr/bin/env python
+import glob
from distutils.core import setup
from stgit.version import version
from distutils.core import setup
from stgit.version import version
@@
-14,5
+15,8
@@
setup(name = 'stgit',
long_description = 'Push/pop utility on top of GIT',
scripts = ['stg', 'gitmergeonefile.py'],
packages = ['stgit', 'stgit.commands'],
long_description = 'Push/pop utility on top of GIT',
scripts = ['stg', 'gitmergeonefile.py'],
packages = ['stgit', 'stgit.commands'],
- data_files = [('/etc', ['stgitrc'])],
+ 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'))]
)
)