bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
0.8.18
by John Arbash Meinel
Adding a setup script for Chris. |
1 |
#!/usr/bin/env python
|
2 |
"""A plugin to generate summary information about a bzr branch.
|
|
3 |
||
4 |
This plugin provides the command 'bzr version-info', which can
|
|
5 |
be used to create a summary of the branch at the current moment.
|
|
6 |
It is very useful as part of a build routine, to include information
|
|
7 |
about the current tree.
|
|
8 |
"""
|
|
9 |
||
10 |
from distutils.core import setup |
|
11 |
||
12 |
doclines = __doc__.split("\n") |
|
13 |
||
14 |
setup(name="version_info", |
|
15 |
version="0.1dev", |
|
16 |
description = __doc__.split("\n")[0], |
|
17 |
maintainer="John A Meinel", |
|
18 |
maintainer_email="john@arbash-meinel.com", |
|
19 |
url = "http://bzr.arbash-meinel.com/plugins/version_info", |
|
20 |
license = "GNU GPL v2", |
|
21 |
packages=['bzrlib.plugins.version_info'], |
|
22 |
package_dir={'bzrlib.plugins.version_info': '.'} |
|
23 |
)
|