Signed-off-by: Catalin Marinas <catalin.marinas@gmail.com>
include README MANIFEST.in AUTHORS COPYING INSTALL ChangeLog TODO stgitrc
include examples/*.tmpl
include README MANIFEST.in AUTHORS COPYING INSTALL ChangeLog TODO stgitrc
include examples/*.tmpl
+include templates/*.tmpl
from distutils.core import setup
from stgit.version import version
from distutils.core import setup
from stgit.version import version
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 = [('/etc', ['stgitrc']),
+ ('share/stgit/templates', glob.glob('templates/*.tmpl')),
+ ('share/stgit/examples', glob.glob('examples/*.tmpl'))]