~abentley/bzrtools/bzrtools.dev

264 by Aaron Bentley
Fixed up setup.py
1
#!/usr/bin/env python2.4
238 by Aaron Bentley
Added setup.py, updated INSTALL, NEWS
2
from distutils.core import setup
3
setup(name="BzrTools",
257.1.1 by Aaron Bentley
tweaked setup.py metadata
4
      version="0.6",
238 by Aaron Bentley
Added setup.py, updated INSTALL, NEWS
5
      description="Handy utilities for working with BZR(Bazaar-NG).",
6
      author="Aaron Bentley",
7
      author_email="aaron.bentley@utoronto.ca",
264 by Aaron Bentley
Fixed up setup.py
8
      license = "GNU GPL v2",
238 by Aaron Bentley
Added setup.py, updated INSTALL, NEWS
9
      url="http://bazaar.canonical.com/BzrTools",
10
      packages=['bzrlib.plugins.bzrtools'],
11
      package_dir={'bzrlib.plugins.bzrtools': '.'})