Have 'stg branch --create' record parent information.
[stgit] / setup.py
CommitLineData
41a6d859
CM
1#!/usr/bin/env python
2
8754986f 3import glob
41a6d859
CM
4from distutils.core import setup
5
6from stgit.version import version
7
8setup(name = 'stgit',
9 version = version,
10 license = 'GPLv2',
11 author = 'Catalin Marinas',
a2275a12 12 author_email = 'catalin.marinas@gmail.com',
41a6d859
CM
13 url = 'http://www.procode.org/stgit/',
14 description = 'Stacked GIT',
15 long_description = 'Push/pop utility on top of GIT',
3659ef88 16 scripts = ['stg'],
957526bf 17 packages = ['stgit', 'stgit.commands'],
47e93ba9
CM
18 data_files = [('share/stgit/templates', glob.glob('templates/*.tmpl')),
19 ('share/stgit/examples', glob.glob('examples/*.tmpl')),
abcc2620 20 ('share/stgit/examples', ['examples/gitconfig']),
1aaf55c9
CM
21 ('share/stgit/contrib', ['contrib/diffcol.sh',
22 'contrib/stgbashprompt.sh',
23 'contrib/stgit-completion.bash']),
d1c8fcd7 24 ('share/doc/stgit', glob.glob('doc/*.txt'))]
41a6d859 25 )