~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Michael Ellerman
  • Date: 2006-06-13 13:20:44 UTC
  • mto: (0.6.1 shelf-win32)
  • mto: This revision was merged to the branch mainline in revision 396.
  • Revision ID: michael@ellerman.id.au-20060613132044-56aea0e248d5c8d2
Fix error handling for non-int patch arguments

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