~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Aaron Bentley
  • Date: 2005-10-29 18:40:48 UTC
  • mto: This revision was merged to the branch mainline in revision 263.
  • Revision ID: abentley@panoramicfeedback.com-20051029184048-88c7e2e0fc56481f
Updated GPL notices

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.6",
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",
 
7
      license = "GNU GPL v2"
9
8
      url="http://bazaar.canonical.com/BzrTools",
10
9
      packages=['bzrlib.plugins.bzrtools'],
11
10
      package_dir={'bzrlib.plugins.bzrtools': '.'})