545
by Aaron Bentley
remove references to python2.4 |
1 |
#!/usr/bin/env python
|
238
by Aaron Bentley
Added setup.py, updated INSTALL, NEWS |
2 |
from distutils.core import setup |
568
by Aaron Bentley
Don't check version when running non-bzrtools commands |
3 |
import version |
238
by Aaron Bentley
Added setup.py, updated INSTALL, NEWS |
4 |
setup(name="BzrTools", |
568
by Aaron Bentley
Don't check version when running non-bzrtools commands |
5 |
version=version.__version__, |
451
by Aaron Bentley
Update setup.py |
6 |
description="Handy utilities for working with Bazaar (bzr).", |
238
by Aaron Bentley
Added setup.py, updated INSTALL, NEWS |
7 |
author="Aaron Bentley", |
612
by Aaron Bentley
Update email address |
8 |
author_email="aaron@aaronbentley.com", |
264
by Aaron Bentley
Fixed up setup.py |
9 |
license = "GNU GPL v2", |
452
by Aaron Bentley
New BzrTools URL |
10 |
url="http://bazaar-vcs.org/BzrTools", |
451
by Aaron Bentley
Update setup.py |
11 |
packages=['bzrlib.plugins.bzrtools', 'bzrlib.plugins.bzrtools.tests'], |
12 |
package_dir={'bzrlib.plugins.bzrtools': '.', }) |