File: setup.py

package info (click to toggle)
bzr-pipeline 1.4-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 236 kB
  • sloc: python: 2,454; makefile: 6
file content (11 lines) | stat: -rwxr-xr-x 472 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python
from distutils.core import setup
setup(name="BzrPipeline",
      version="1.4",
      description="Bazaar plugin for working with a sequence of branches.",
      author="Aaron Bentley",
      author_email="aaron@aaronbentley.com",
      license = "GNU GPL v2",
      url="http://wiki.bazaar.canonical.com/BzrPipeline",
      packages=['bzrlib.plugins.pipeline', 'bzrlib.plugins.pipeline.tests'],
      package_dir={'bzrlib.plugins.pipeline': '.', })