~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-17 13:40:43 UTC
  • mto: This revision was merged to the branch mainline in revision 1940.
  • Revision ID: john@arbash-meinel.com-20060817134043-d2768bc3f4cbf161
Fix a stupid error in code declaration order

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
             'license':      'GNU GPL v2',
24
24
            }
25
25
 
26
 
BZRLIB = {'packages':get_bzrlib_packages()}
 
26
# The list of packages is automatically generated later. Add other things
 
27
# that are part of BZRLIB here.
 
28
BZRLIB = {}
27
29
 
28
30
PKG_DATA = {# install files from selftest suite
29
31
            'package_data': {'bzrlib': ['doc/api/*.txt',
81
83
    return sorted(packages)
82
84
 
83
85
 
 
86
BZRLIB['packages'] = get_bzrlib_packages()
 
87
 
 
88
 
84
89
from distutils.core import setup
85
90
from distutils.command.install_scripts import install_scripts
86
91
from distutils.command.build import build