~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Aaron Bentley
  • Date: 2005-05-26 14:20:29 UTC
  • Revision ID: abentley@troll-20050526142029-e919772712205486
Added bug report

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': '.', })