Separate the commands in stgit/commands/* files
[stgit] / setup.py
CommitLineData
41a6d859
CM
1#!/usr/bin/env python
2
3from distutils.core import setup
4
5from stgit.version import version
6
7setup(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 )