~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Aaron Bentley
  • Date: 2005-10-28 03:01:02 UTC
  • mfrom: (147.4.13)
  • mto: (147.4.24 trunk)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: aaron.bentley@utoronto.ca-20051028030102-eead1e484007de74
Merged lifeless

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python2.4
2
1
from distutils.core import setup
3
2
setup(name="BzrTools",
4
 
      version="0.6.1",
 
3
      version="0.1.1",
5
4
      description="Handy utilities for working with BZR(Bazaar-NG).",
6
5
      author="Aaron Bentley",
7
6
      author_email="aaron.bentley@utoronto.ca",
8
 
      license = "GNU GPL v2",
9
7
      url="http://bazaar.canonical.com/BzrTools",
10
8
      packages=['bzrlib.plugins.bzrtools'],
11
9
      package_dir={'bzrlib.plugins.bzrtools': '.'})