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 |
740.1.1
by Robert Collins
Guard setup.py from executing on a simple import. |
4 |
if __name__ == '__main__': |
5 |
setup(name="BzrTools", |
|
6 |
version=version.__version__, |
|
7 |
description="Handy utilities for working with Bazaar (bzr).", |
|
8 |
author="Aaron Bentley", |
|
9 |
author_email="aaron@aaronbentley.com", |
|
10 |
license = "GNU GPL v2", |
|
11 |
url="http://bazaar-vcs.org/BzrTools", |
|
766
by Aaron Bentley
Fix long line. |
12 |
packages=['bzrlib.plugins.bzrtools', |
13 |
'bzrlib.plugins.bzrtools.tests'], |
|
740.1.1
by Robert Collins
Guard setup.py from executing on a simple import. |
14 |
package_dir={'bzrlib.plugins.bzrtools': '.', }) |