File: setup.py

package info (click to toggle)
bzr-pipeline 0.0.1~bzr153-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 212 kB
  • ctags: 322
  • sloc: python: 2,276; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 463 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="0.0.1",
      description="Bazaar plugin for working with a sequence of branches.",
      author="Aaron Bentley",
      author_email="aaron@aaronbentley.com",
      license = "GNU GPL v2",
      url="http://bazaar-vcs.org/BzrPipeline",
      packages=['bzrlib.plugins.pipeline', 'bzrlib.plugins.pipeline.tests'],
      package_dir={'bzrlib.plugins.pipeline': '.', })