~ian-clatworthy/bzr-explorer/labels-in-toolbox

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
from distutils.core import setup

try:
    from extras import cmdclass
except ImportError:
    cmdclass = {}

bzr_plugin_name = 'explorer'

bzr_plugin_version = (0, 5, 0, 'dev', 0)
bzr_minimum_version = (1, 13, 0)
bzr_maximum_version = None

if __name__ == '__main__':
    setup(name="explorer",
          version="0.5dev",
          description="desktop application for using Bazaar.",
          author="Canonical Ltd",
          author_email="bazaar@lists.canonical.com",
          license = "GNU GPL v2",
          url="https://launchpad.net/bzr-explorer",
          scripts=[],
          packages=['bzrlib.plugins.explorer',
                    'bzrlib.plugins.explorer.lib',
                    'bzrlib.plugins.explorer.lib.tests',
                    'bzrlib.plugins.explorer.widgets',
                    ],
          package_data={'bzrlib.plugins.explorer': ['lib/std_profile/*.xml',
                                                    'locale/*/LC_MESSAGES/*.mo',
                                                    '*.txt',
                                                    'NEWS',
                                                    '*.ini',
                                                    '*.xml'
                                                   ]},
          package_dir={'bzrlib.plugins.explorer': '.'},
          cmdclass=cmdclass,
          )