~jelmer/bzr-builddeb/810531-dont-repack-bz2

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: James Westby
  • Date: 2006-08-15 21:34:50 UTC
  • mto: This revision was merged to the branch mainline in revision 25.
  • Revision ID: jw+debian@jameswestby.net-20060815213450-e201e433629004ff
Add the file to build the debian package

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python2.4
 
2
 
 
3
from distutils.core import setup
 
4
 
 
5
setup(name="bzr-builddeb",
 
6
      version="0.1.0",
 
7
      description="Build a .deb from a bzr branch",
 
8
      author="James Westby",
 
9
      author_email="jw+debian@jameswestby.net",
 
10
      license = "GNU GPL v2",
 
11
      url="http://jameswestby.net/bzr/bzr-builddeb/",
 
12
      packages=['bzrlib.plugins.bzr-builddeb'],
 
13
      package_dir={'bzrlib.plugins.bzr-builddeb': '.'})
 
14