~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Aaron Bentley
  • Date: 2005-06-14 16:29:36 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050614162936-3da2641a806b43e1
Added annotate plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
from distutils.core import setup
3
 
import version
4
 
if __name__ == '__main__':
5
 
    setup(name="BzrTools",
6
 
          version=version.__version__,
7
 
          description="Handy utilities for working with Bazaar (bzr).",
8
 
          author="Aaron Bentley",
9
 
          author_email="aaron@aaronbentley.com",
10
 
          license = "GNU GPL v2",
11
 
          url="http://bazaar-vcs.org/BzrTools",
12
 
          packages=['bzrlib.plugins.bzrtools',
13
 
                    'bzrlib.plugins.bzrtools.tests'],
14
 
          package_dir={'bzrlib.plugins.bzrtools': '.', })