~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Aaron Bentley
  • Date: 2005-10-28 02:20:09 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20051028022009-405aeaecbe992f11
blacklisted 'shell' from completion

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.17.0",
5
 
      description="Handy utilities for working with Bazaar (bzr).",
 
3
      version="0.1.1",
 
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
 
      url="http://bazaar-vcs.org/BzrTools",
10
 
      packages=['bzrlib.plugins.bzrtools', 'bzrlib.plugins.bzrtools.tests'],
11
 
      package_dir={'bzrlib.plugins.bzrtools': '.', })
 
7
      url="http://bazaar.canonical.com/BzrTools",
 
8
      packages=['bzrlib.plugins.bzrtools'],
 
9
      package_dir={'bzrlib.plugins.bzrtools': '.'})