~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",
469 by Aaron Bentley
Update version numbers to 0.14.0
4
      version="0.14.0",
451 by Aaron Bentley
Update setup.py
5
      description="Handy utilities for working with Bazaar (bzr).",
238 by Aaron Bentley
Added setup.py, updated INSTALL, NEWS
6
      author="Aaron Bentley",
7
      author_email="aaron.bentley@utoronto.ca",
264 by Aaron Bentley
Fixed up setup.py
8
      license = "GNU GPL v2",
452 by Aaron Bentley
New BzrTools URL
9
      url="http://bazaar-vcs.org/BzrTools",
451 by Aaron Bentley
Update setup.py
10
      packages=['bzrlib.plugins.bzrtools', 'bzrlib.plugins.bzrtools.tests'],
11
      package_dir={'bzrlib.plugins.bzrtools': '.', })