~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Martin Pool
  • Date: 2006-02-22 04:29:54 UTC
  • mfrom: (1566 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1569.
  • Revision ID: mbp@sourcefrog.net-20060222042954-60333f08dd56a646
[merge] from bzr.dev before integration
Fix undefined ordering in sign_my_revisions breaking tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
########################
82
82
 
83
83
setup(name='bzr',
84
 
      version='0.9pre',
85
 
      author='Canonical Ltd',
86
 
      author_email='bazaar-ng@lists.ubuntu.com',
87
 
      url='http://bazaar-vcs.org/',
 
84
      version='0.7pre',
 
85
      author='Martin Pool',
 
86
      author_email='mbp@sourcefrog.net',
 
87
      url='http://www.bazaar-ng.org/',
88
88
      description='Friendly distributed version control system',
89
89
      license='GNU GPL v2',
90
90
      packages=['bzrlib',
91
 
                'bzrlib.benchmarks',
92
91
                'bzrlib.doc',
93
92
                'bzrlib.doc.api',
94
93
                'bzrlib.export',
95
94
                'bzrlib.plugins',
96
 
                'bzrlib.plugins.launchpad',
97
95
                'bzrlib.store',
98
 
                'bzrlib.store.revision',
99
 
                'bzrlib.store.versioned',
100
96
                'bzrlib.tests',
101
97
                'bzrlib.tests.blackbox',
102
 
                'bzrlib.tests.branch_implementations',
103
 
                'bzrlib.tests.bzrdir_implementations',
104
 
                'bzrlib.tests.interrepository_implementations',
105
 
                'bzrlib.tests.interversionedfile_implementations',
106
 
                'bzrlib.tests.repository_implementations',
107
 
                'bzrlib.tests.revisionstore_implementations',
108
 
                'bzrlib.tests.workingtree_implementations',
109
98
                'bzrlib.transport',
110
 
                'bzrlib.transport.http',
111
99
                'bzrlib.ui',
112
100
                'bzrlib.util',
113
101
                'bzrlib.util.elementtree',
114
102
                'bzrlib.util.effbot.org',
115
103
                'bzrlib.util.configobj',
116
 
                'bzrlib.bundle',
117
 
                'bzrlib.bundle.serializer'
118
104
                ],
119
105
      scripts=['bzr'],
120
106
      cmdclass={'install_scripts': my_install_scripts, 'build': bzr_build},