File: setup.py

package info (click to toggle)
qbzr 0.23.2-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,128 kB
  • ctags: 2,493
  • sloc: python: 26,468; makefile: 55; sh: 2
file content (32 lines) | stat: -rwxr-xr-x 928 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from distutils.core import setup

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

ext_modules = []

setup(name='qbzr',
      description='Qt4 frontend for Bazaar',
      keywords='plugin bzr qt qbzr',
      version='0.23.2',
      url='http://wiki.bazaar.canonical.com/QBzr',
      license='GPL',
      author='QBzr Developers',
      author_email='qbzr@googlegroups.com',
      package_dir={'bzrlib.plugins.qbzr': '.'},
      package_data={'bzrlib.plugins.qbzr': ['locale/*/LC_MESSAGES/qbzr.mo',
                                            ]},
      packages=['bzrlib.plugins.qbzr',
                'bzrlib.plugins.qbzr.lib',
                'bzrlib.plugins.qbzr.lib.extra',
                'bzrlib.plugins.qbzr.lib.tests',
                'bzrlib.plugins.qbzr.lib.widgets',
                ],
      ext_modules=ext_modules,
      cmdclass=cmdclass,
)