File: setup.py

package info (click to toggle)
bzrtools 0.11.0-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 508 kB
  • ctags: 560
  • sloc: python: 4,863; sh: 11; makefile: 8
file content (11 lines) | stat: -rwxr-xr-x 428 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python2.4
from distutils.core import setup
setup(name="BzrTools",
      version="0.6.1",
      description="Handy utilities for working with BZR(Bazaar-NG).",
      author="Aaron Bentley",
      author_email="aaron.bentley@utoronto.ca",
      license = "GNU GPL v2",
      url="http://bazaar.canonical.com/BzrTools",
      packages=['bzrlib.plugins.bzrtools'],
      package_dir={'bzrlib.plugins.bzrtools': '.'})