~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Martin Pool
  • Date: 2005-03-14 07:07:24 UTC
  • Revision ID: mbp@sourcefrog.net-20050314070724-ba6c85db7d96c508
- add setup.py and install instructions
- rename main script to just bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
 
 
3
# This is an installation script for bzr.  Run it with
 
4
# './setup.py install', or
 
5
# './setup.py --help' for more options
 
6
 
 
7
from distutils.core import setup
 
8
 
 
9
setup(name='bzr',
 
10
      version='0.0.0',
 
11
      author='Martin Pool',
 
12
      author_email='mbp@sourcefrog.net',
 
13
      url='http://www.bazaar-ng.org/',
 
14
      description='Friendly distributed version control system',
 
15
      license='GNU GPL v2',
 
16
      packages=['bzrlib'],
 
17
      scripts=['bzr'])