/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

  • Committer: Robert Collins
  • Date: 2005-11-04 23:27:47 UTC
  • Revision ID: robertc@robertcollins.net-20051104232747-5872c68d759bc7be
Bugfix the config test suite to not create .bazaar in the dir where it is run.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
    def run(self):
74
74
        build.run(self)
75
75
 
76
 
        import generate_docs
77
 
        generate_docs.main(argv=["bzr", "man"])
 
76
        import bzr_man
 
77
        bzr_man.main()
78
78
 
79
79
########################
80
80
## Setup
81
81
########################
82
82
 
83
83
setup(name='bzr',
84
 
      version='0.8pre',
 
84
      version='0.7pre',
85
85
      author='Martin Pool',
86
86
      author_email='mbp@sourcefrog.net',
87
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.doc',
92
 
                'bzrlib.doc.api',
93
 
                'bzrlib.export',
94
91
                'bzrlib.plugins',
 
92
                'bzrlib.selftest',
 
93
                'bzrlib.util',
 
94
                'bzrlib.transport',
95
95
                'bzrlib.store',
96
 
                'bzrlib.store.revision',
97
 
                'bzrlib.store.versioned',
98
 
                'bzrlib.tests',
99
 
                'bzrlib.tests.blackbox',
100
 
                'bzrlib.tests.branch_implementations',
101
 
                'bzrlib.tests.bzrdir_implementations',
102
 
                'bzrlib.tests.interrepository_implementations',
103
 
                'bzrlib.tests.interversionedfile_implementations',
104
 
                'bzrlib.tests.repository_implementations',
105
 
                'bzrlib.tests.revisionstore_implementations',
106
 
                'bzrlib.tests.workingtree_implementations',
107
 
                'bzrlib.transport',
108
 
                'bzrlib.transport.http',
109
 
                'bzrlib.ui',
110
 
                'bzrlib.util',
111
96
                'bzrlib.util.elementtree',
112
97
                'bzrlib.util.effbot.org',
113
98
                'bzrlib.util.configobj',
115
100
      scripts=['bzr'],
116
101
      cmdclass={'install_scripts': my_install_scripts, 'build': bzr_build},
117
102
      data_files=[('man/man1', ['bzr.1'])],
118
 
    #   todo: install the txt files from bzrlib.doc.api.
119
103
     )