~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Aaron Bentley
  • Date: 2006-06-21 14:28:21 UTC
  • mfrom: (1802 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1803.
  • Revision ID: abentley@panoramicfeedback.com-20060621142821-6c1170e2d9029f76
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
########################
82
82
 
83
83
setup(name='bzr',
84
 
      version='0.8pre',
85
 
      author='Martin Pool',
86
 
      author_email='mbp@sourcefrog.net',
87
 
      url='http://www.bazaar-ng.org/',
 
84
      version='0.9pre',
 
85
      author='Canonical Ltd',
 
86
      author_email='bazaar-ng@lists.ubuntu.com',
 
87
      url='http://bazaar-vcs.org/',
88
88
      description='Friendly distributed version control system',
89
89
      license='GNU GPL v2',
90
90
      packages=['bzrlib',
92
92
                'bzrlib.doc.api',
93
93
                'bzrlib.export',
94
94
                'bzrlib.plugins',
 
95
                'bzrlib.plugins.launchpad',
95
96
                'bzrlib.store',
96
97
                'bzrlib.store.revision',
97
98
                'bzrlib.store.versioned',
111
112
                'bzrlib.util.elementtree',
112
113
                'bzrlib.util.effbot.org',
113
114
                'bzrlib.util.configobj',
 
115
                'bzrlib.bundle',
 
116
                'bzrlib.bundle.serializer'
114
117
                ],
115
118
      scripts=['bzr'],
116
119
      cmdclass={'install_scripts': my_install_scripts, 'build': bzr_build},