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 --replace option to import
[stgit]
/
setup.py
diff --git
a/setup.py
b/setup.py
index fbfca9662e36baf8deec24231e6480065d242534..7888f29f97452f8db39f4a9e857b7f1d2c913765 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
@@
-12,7
+13,10
@@
setup(name = 'stgit',
url = 'http://www.procode.org/stgit/',
description = 'Stacked GIT',
long_description = 'Push/pop utility on top of GIT',
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'],
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'))]
)
)