~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

first cut at merge from integration.

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.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.doc',
92
 
                'bzrlib.doc.api',
93
91
                'bzrlib.export',
94
92
                'bzrlib.plugins',
95
 
                'bzrlib.plugins.launchpad',
96
93
                'bzrlib.store',
97
 
                'bzrlib.store.revision',
98
 
                'bzrlib.store.versioned',
99
94
                'bzrlib.tests',
100
95
                'bzrlib.tests.blackbox',
101
 
                'bzrlib.tests.branch_implementations',
102
 
                'bzrlib.tests.bzrdir_implementations',
103
 
                'bzrlib.tests.interrepository_implementations',
104
 
                'bzrlib.tests.interversionedfile_implementations',
105
 
                'bzrlib.tests.repository_implementations',
106
 
                'bzrlib.tests.revisionstore_implementations',
107
 
                'bzrlib.tests.workingtree_implementations',
108
96
                'bzrlib.transport',
109
 
                'bzrlib.transport.http',
110
97
                'bzrlib.ui',
111
98
                'bzrlib.util',
112
99
                'bzrlib.util.elementtree',
113
100
                'bzrlib.util.effbot.org',
114
101
                'bzrlib.util.configobj',
115
 
                'bzrlib.bundle',
116
 
                'bzrlib.bundle.serializer'
117
102
                ],
118
103
      scripts=['bzr'],
119
104
      cmdclass={'install_scripts': my_install_scripts, 'build': bzr_build},
120
105
      data_files=[('man/man1', ['bzr.1'])],
121
 
    #   todo: install the txt files from bzrlib.doc.api.
122
106
     )