~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

 * bzr add now lists how many files were ignored per glob.  add --verbose
   lists the specific files.  (Aaron Bentley)

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