~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

[merge] update from bzr.dev

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 bzr_man
77
 
        bzr_man.main()
 
76
        import generate_docs
 
77
        generate_docs.main(argv=["bzr", "man"])
78
78
 
79
79
########################
80
80
## Setup
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',
91
93
                'bzrlib.export',
92
94
                'bzrlib.plugins',
93
95
                'bzrlib.store',
103
105
      scripts=['bzr'],
104
106
      cmdclass={'install_scripts': my_install_scripts, 'build': bzr_build},
105
107
      data_files=[('man/man1', ['bzr.1'])],
 
108
    #   todo: install the txt files from bzrlib.doc.api.
106
109
     )