/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Ian Clatworthy
  • Date: 2009-02-17 23:37:24 UTC
  • mto: (0.64.114 trunk)
  • mto: This revision was merged to the branch mainline in revision 6631.
  • Revision ID: ian.clatworthy@canonical.com-20090217233724-y6q12cyoyln6vkh6
code & tests for file copying

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
from distutils.core import setup
 
3
 
 
4
bzr_plugin_name = 'fastimport'
 
5
 
 
6
bzr_plugin_version = (0, 8, 0, 'dev', 0)
 
7
bzr_minimum_version = (1, 1, 0)
 
8
bzr_maximum_version = None
 
9
 
 
10
if __name__ == '__main__':
 
11
    setup(name="fastimport",
 
12
          version="0.8.0dev0",
 
13
          description="stream-based import into and export from Bazaar.",
 
14
          author="Canonical Ltd",
 
15
          author_email="bazaar@lists.canonical.com",
 
16
          license = "GNU GPL v2",
 
17
          url="https://launchpad.net/bzr-fastimport",
 
18
          scripts=['exporters/bzr-fast-export'],
 
19
          packages=['bzrlib.plugins.fastimport',
 
20
                    'bzrlib.plugins.fastimport.processors',
 
21
                    'bzrlib.plugins.fastimport.tests',
 
22
                    ],
 
23
          package_dir={'bzrlib.plugins.fastimport': '.'})