/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.py

Fix issues pointed out by pyflakes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
 
3
 
from info import *
 
3
bzr_plugin_name = "git"
 
4
 
 
5
dulwich_minimum_version = (0, 3, 1)
 
6
 
 
7
# versions ending in 'exp' mean experimental mappings
 
8
# versions ending in 'dev' mean development version
 
9
# versions ending in 'final' mean release (well tested, etc)
 
10
bzr_plugin_version = (0, 4, 1, 'dev', 0)
 
11
 
 
12
bzr_commands = ["svn-import", "svn-layout"]
 
13
 
 
14
bzr_compatible_versions = [(1, x, 0) for x in [14, 15, 16, 17, 18]]
 
15
 
 
16
bzr_minimum_version = bzr_compatible_versions[0]
 
17
 
 
18
bzr_maximum_version = bzr_compatible_versions[-1]
 
19
 
 
20
bzr_control_formats = {"Git":{'.git/': None}}
4
21
 
5
22
if __name__ == '__main__':
6
23
    from distutils.core import setup
16
33
          maintainer='Jelmer Vernooij',
17
34
          maintainer_email='jelmer@samba.org',
18
35
          long_description="""
19
 
          This plugin adds limited support for checking out and viewing
 
36
          This plugin adds limited support for checking out and viewing 
20
37
          Git branches in Bazaar.
21
38
          """,
22
39
          package_dir={'bzrlib.plugins.git':'.'},