Add setup.py for subvertpy.
[jelmer/subvertpy.git] / setup.py
1 #!/usr/bin/env python
2 # Setup file for bzr-svn
3 # Copyright (C) 2005-2008 Jelmer Vernooij <jelmer@samba.org>
4
5 from distutils.core import setup
6 from subvertpy.setup import subvertpy_modules, install_lib_with_dlls
7
8 setup(name='bzr-svn',
9       description='Support for Subversion branches in Bazaar',
10       keywords='plugin bzr svn',
11       version='0.5.0',
12       url='http://bazaar-vcs.org/BzrForeignBranches/Subversion',
13       download_url='http://bazaar-vcs.org/BzrSvn',
14       license='GPL',
15       author='Jelmer Vernooij',
16       author_email='jelmer@samba.org',
17       long_description="""
18       This plugin adds support for branching off and 
19       committing to Subversion repositories from 
20       Bazaar.
21       """,
22       package_dir={'bzrlib.plugins.svn':'.'},
23       packages=['bzrlib.plugins.svn', 
24                 'bzrlib.plugins.svn.mapping3', 
25                 'bzrlib.plugins.svn.subvertpy', 
26                 'bzrlib.plugins.svn.subvertpy.tests', 
27                 'bzrlib.plugins.svn.tests'],
28       ext_modules=subvertpy_modules,
29       cmdclass = { 'install_lib': install_lib_with_dlls },
30       )