~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Aaron Bentley
  • Date: 2011-04-15 02:33:36 UTC
  • mto: This revision was merged to the branch mainline in revision 761.
  • Revision ID: aaron@aaronbentley.com-20110415023336-o00049lbrfpmt1ae
Update compatibility-checking code.

Show diffs side-by-side

added added

removed removed

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