diff options
author | Ian Clatworthy <ian.clatworthy@canonical.com> | 2008-07-22 16:01:06 +1000 |
---|---|---|
committer | Ian Clatworthy <ian.clatworthy@canonical.com> | 2008-07-22 16:01:06 +1000 |
commit | dc6ae19e54b51e2962ef1e73a62a5a13cf21891b (patch) | |
tree | 958a5f3a7e29243b75c4b270049452eef860412c /setup.py | |
parent | bdc3e6aba77fad2f79e8aa4403ac88acd7696743 (diff) | |
download | python-fastimport-dc6ae19e54b51e2962ef1e73a62a5a13cf21891b.tar.gz |
added NEWS and setup.py
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..90e7b40 --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python2.4 +from distutils.core import setup + +bzr_plugin_name = 'fastimport' + +bzr_plugin_version = (0, 6, 0, 'dev', 0) +bzr_minimum_version = (1, 0, 0) +bzr_maximum_version = None + +if __name__ == 'main': + setup(name="fastimport", + version="0.6.0dev0", + description="fastimport format import into and export from Bazaar.", + author="Canonical Ltd", + author_email="bazaar@lists.canonical.com", + license = "GNU GPL v2", + url="https://launchpad.net/bzr-fastimport", + packages=['bzrlib.plugins.fastimport', + 'bzrlib.plugins.fastimport.processors', + 'bzrlib.plugins.fastimport.tests', + ], + package_dir={'bzrlib.plugins.fastimport': '.'}) |