bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
0.200.128
by Jelmer Vernooij
Merge new dulwich. |
1 |
#!/usr/bin/env python
|
|
0.200.50
by Jelmer Vernooij
add setup.py |
2 |
|
|
0.200.587
by Jelmer Vernooij
Put plugin info in separate file. |
3 |
from info import * |
|
0.200.585
by Jelmer Vernooij
Indicate .git directories are supported. |
4 |
|
|
0.200.1330
by Jelmer Vernooij
Read long description from README. |
5 |
readme = file('README').read() |
6 |
||
7 |
||
|
0.200.583
by Jelmer Vernooij
Add plugin api info. |
8 |
if __name__ == '__main__': |
9 |
from distutils.core import setup |
|
|
0.200.584
by Jelmer Vernooij
fix use with plugin-info. |
10 |
version = bzr_plugin_version[:3] |
11 |
version_string = ".".join([str(x) for x in version]) |
|
|
0.200.583
by Jelmer Vernooij
Add plugin api info. |
12 |
|
|
0.200.1405
by Jelmer Vernooij
Add i18n support. |
13 |
command_classes = {} |
14 |
try: |
|
15 |
from bzrlib.bzr_distutils import build_mo |
|
16 |
except ImportError: |
|
17 |
pass
|
|
18 |
else: |
|
19 |
command_classes['build_mo'] = build_mo |
|
20 |
||
|
0.200.583
by Jelmer Vernooij
Add plugin api info. |
21 |
setup(name='bzr-git', |
22 |
description='Support for Git branches in Bazaar', |
|
23 |
keywords='plugin bzr git bazaar', |
|
24 |
version=version_string, |
|
25 |
url='http://bazaar-vcs.org/BzrForeignBranches/Git', |
|
26 |
license='GPL', |
|
27 |
maintainer='Jelmer Vernooij', |
|
28 |
maintainer_email='jelmer@samba.org', |
|
|
0.200.1330
by Jelmer Vernooij
Read long description from README. |
29 |
long_description=readme, |
|
0.200.583
by Jelmer Vernooij
Add plugin api info. |
30 |
package_dir={'bzrlib.plugins.git':'.'}, |
31 |
packages=['bzrlib.plugins.git', |
|
32 |
'bzrlib.plugins.git.tests'], |
|
33 |
scripts=['bzr-receive-pack', 'bzr-upload-pack'], |
|
|
0.200.1330
by Jelmer Vernooij
Read long description from README. |
34 |
classifiers=[ |
35 |
'Topic :: Software Development :: Version Control', |
|
36 |
'Environment :: Plugins', |
|
37 |
'Development Status :: 4 - Beta', |
|
38 |
'License :: OSI Approved :: GNU General Public License (GPL)', |
|
39 |
'Natural Language :: English', |
|
40 |
'Operating System :: OS Independent', |
|
41 |
'Programming Language :: Python', |
|
42 |
'Programming Language :: Python :: 2', |
|
|
0.200.1405
by Jelmer Vernooij
Add i18n support. |
43 |
],
|
44 |
cmdclass=command_classes, |
|
|
0.200.583
by Jelmer Vernooij
Add plugin api info. |
45 |
)
|