48
by Lukáš Lalinský
Setup script, updated README, recompiled resources. |
1 |
#!/usr/bin/env python
|
2 |
# -*- coding: utf-8 -*-
|
|
3 |
||
360.1.6
by Alexander Belchenko
setup.py: removed unnecessary imports. |
4 |
from distutils.core import setup |
48
by Lukáš Lalinský
Setup script, updated README, recompiled resources. |
5 |
|
457
by Alexander Belchenko
setup.py: importing cmdclass dict from extras/__init__.py |
6 |
try: |
7 |
from extras import cmdclass |
|
8 |
except ImportError: |
|
9 |
cmdclass = {} |
|
210
by Lukáš Lalinský
Add C++ implementation of TreeFilterProxyModel. |
10 |
|
11 |
ext_modules = [] |
|
225
by Lukáš Lalinský
Make setup.py not require sip/pyqt development packages |
12 |
|
48
by Lukáš Lalinský
Setup script, updated README, recompiled resources. |
13 |
setup(name='qbzr', |
14 |
description='Qt4 frontend for Bazaar', |
|
15 |
keywords='plugin bzr qt qbzr', |
|
1486
by Alexander Belchenko
qcommit: Better support of cancel commit for foreign branches (git/svn/etc). (Bug #1030343, Jared Silva, Jelmer Vernooij) |
16 |
version='0.22.5', |
1190.1.39
by Alexander Belchenko
starting 0.18.5 |
17 |
url='http://wiki.bazaar.canonical.com/QBzr', |
48
by Lukáš Lalinský
Setup script, updated README, recompiled resources. |
18 |
license='GPL', |
407
by Lukáš Lalinský
Change the contact info in setup.py |
19 |
author='QBzr Developers', |
20 |
author_email='qbzr@googlegroups.com', |
|
112
by Lukáš Lalinsky
Update NEWS.txt and version numbers. |
21 |
package_dir={'bzrlib.plugins.qbzr': '.'}, |
769.1.1
by Alexander Belchenko
Makefile to automatize release process. |
22 |
package_data={'bzrlib.plugins.qbzr': ['locale/*/LC_MESSAGES/qbzr.mo', |
23 |
'*.txt', |
|
24 |
]},
|
|
408
by Alexander Belchenko
setup.py: install tests too. |
25 |
packages=['bzrlib.plugins.qbzr', |
26 |
'bzrlib.plugins.qbzr.lib', |
|
27 |
'bzrlib.plugins.qbzr.lib.extra', |
|
28 |
'bzrlib.plugins.qbzr.lib.tests', |
|
1388.1.1
by Martin
Add new widgets module to setup.py packages list |
29 |
'bzrlib.plugins.qbzr.lib.widgets', |
408
by Alexander Belchenko
setup.py: install tests too. |
30 |
],
|
210
by Lukáš Lalinský
Add C++ implementation of TreeFilterProxyModel. |
31 |
ext_modules=ext_modules, |
225
by Lukáš Lalinský
Make setup.py not require sip/pyqt development packages |
32 |
cmdclass=cmdclass, |
33 |
)
|