chiark
/
gitweb
/
~mdw
/
stgit
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Allow mailing a given patch list
[stgit]
/
setup.py
diff --git
a/setup.py
b/setup.py
index 48d363161b465c2f6f3e945764a0f214dba9fa49..eaf39c17ba9220b325a89e5292a19077072b87ea 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
@@
-13,6
+14,8
@@
setup(name = 'stgit',
description = 'Stacked GIT',
long_description = 'Push/pop utility on top of GIT',
scripts = ['stg', 'gitmergeonefile.py'],
description = 'Stacked GIT',
long_description = 'Push/pop utility on top of GIT',
scripts = ['stg', 'gitmergeonefile.py'],
- packages = ['stgit'],
- data_files = [('/etc', ['stgitrc'])],
+ 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'])]
)
)