chiark / gitweb /
Initial commit (Release 0.4)
[stgit] / setup.py
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4
5 from stgit.version import version
6
7 setup(name = 'stgit',
8       version = version,
9       license = 'GPLv2',
10       author = 'Catalin Marinas',
11       author_email = 'catalin.marinas@gmail.org',
12       url = 'http://www.procode.org/stgit/',
13       description = 'Stacked GIT',
14       long_description = 'Push/pop utility on top of GIT',
15       scripts = ['stg', 'gitmergeonefile.py'],
16       packages = ['stgit'],
17       data_files = [('/etc', ['stgitrc'])],
18       )