/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jelmer Vernooij
  • Date: 2010-08-13 20:50:53 UTC
  • Revision ID: jelmer@samba.org-20100813205053-70wlu17t87omy0ua
StartĀ onĀ 0.100.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
 
 
3
2
"""GTK+ Frontends for various Bazaar commands."""
4
3
 
 
4
from info import *
 
5
 
5
6
from distutils.core import setup, Command
6
7
from distutils.command.install_data import install_data
7
8
from distutils.command.build import build
103
104
 
104
105
 
105
106
if __name__ == '__main__':
 
107
    version = bzr_plugin_version[:3]
 
108
    version_string = ".".join([str(x) for x in version])
106
109
    setup(
107
110
        name = "bzr-gtk",
108
 
        version = "0.99.0",
 
111
        version = version_string,
109
112
        maintainer = "Jelmer Vernooij",
110
113
        maintainer_email = "jelmer@samba.org",
111
114
        description = "GTK+ Frontends for various Bazaar commands",