45
by Martin Pool
- add setup.py and install instructions |
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', |
|
974.1.26
by aaron.bentley at utoronto
merged mbp@sourcefrog.net-20050817233101-0939da1cf91f2472 |
16 |
packages=['bzrlib', |
17 |
'bzrlib.plugins', |
|
18 |
'bzrlib.selftest', |
|
19 |
'bzrlib.util', |
|
20 |
'bzrlib.util.elementtree', |
|
21 |
'bzrlib.util.effbot.org', |
|
974.1.53
by aaron.bentley at utoronto
Disabled urlgrabber |
22 |
],
|
45
by Martin Pool
- add setup.py and install instructions |
23 |
scripts=['bzr']) |