~mars/tarmac/throwaway-merge-source

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Paul Hummer
  • Date: 2009-07-11 04:18:18 UTC
  • mfrom: (131 tarmac)
  • mto: This revision was merged to the branch mainline in revision 132.
  • Revision ID: paul@eventuallyanyway.com-20090711041818-jirjz6ert780jcx9
Merge from trunk, resolve conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
 
# Copyright 2009 Paul Hummer - See LICENSE
 
2
# Copyright 2009 Paul Hummer
 
3
#
 
4
# This file is part of Tarmac.
 
5
#
 
6
# Tarmac is free software: you can redistribute it and/or modify
 
7
# it under the terms of the GNU General Public License version 3 as
 
8
# published by
 
9
# the Free Software Foundation.
 
10
#
 
11
# Tarmac is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
# GNU General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License
 
17
# along with Tarmac.  If not, see <http://www.gnu.org/licenses/>.
3
18
'''Tarmac installation script.'''
4
19
 
5
20
from distutils.core import setup
7
22
from tarmac import __version__
8
23
 
9
24
setup(
10
 
    name=u'Tarmac',
 
25
    author='Paul Hummer',
 
26
    author_email='Paul Hummer <paul@eventuallyanyway.com',
 
27
    name=u'tarmac',
11
28
    version=__version__,
12
29
    description=u'Tarmac - The Launchpad Lander',
13
30
    url=u'http://edge.launchpad.net/tarmac',
14
 
    license=u'AGPLv3',
 
31
    license=u'GPLv3',
15
32
    package_dir={
16
33
        'bzrlib.plugins.tarmac': 'bzrplugin',
17
34
        'tarmac': 'tarmac'},
18
 
    packages=['bzrlib.plugins.tarmac', 'tarmac'],
19
 
    scripts=['tarmac-lander'],
 
35
    packages=['bzrlib.plugins.tarmac', 'tarmac', 'tarmac.plugins'],
 
36
    scripts=['tarmac-lander', 'tarmac-authenticate'],
20
37
    long_description='''
21
38
        Tarmac is a series of scripts to facilitate the landing of Bazaar
22
39
        branches in Launchpad (http://edge.launchpad.net).''',