bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
0.142.1
by Jelmer Vernooij
Add setup.py. |
1 |
#!/usr/bin/env python2.4
|
2 |
||
3 |
from distutils.core import setup |
|
4 |
||
5 |
setup(name='bzr-stats', |
|
6 |
description='Statistics plugin for Bazaar', |
|
7 |
keywords='plugin bzr stats', |
|
8 |
version='0.0.1', |
|
9 |
license='GPL', |
|
10 |
author='John Arbash Meinel', |
|
|
0.140.13
by Jelmer Vernooij
Provide enough information for setup.py register to work. |
11 |
author_email="john@arbash-meinel.com", |
12 |
url="http://launchpad.net/bzr-stats", |
|
|
0.142.1
by Jelmer Vernooij
Add setup.py. |
13 |
long_description=""" |
14 |
Simple statistics plugin for Bazaar.
|
|
15 |
""", |
|
16 |
package_dir={'bzrlib.plugins.stats':'.'}, |
|
17 |
packages=['bzrlib.plugins.stats'] |
|
18 |
)
|