/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: Jelmer Vernooij
  • Date: 2018-04-06 19:28:01 UTC
  • mfrom: (6940 work)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@jelmer.uk-20180406192801-0352t3rvkwsy9s51
merge lp:brz

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
def get_long_description():
25
25
    dirname = os.path.dirname(__file__)
26
 
    readme = os.path.join(dirname, 'README')
 
26
    readme = os.path.join(dirname, 'README.rst')
27
27
    with open(readme, 'rb') as f:
28
28
        return f.read()
29
29
 
64
64
}
65
65
 
66
66
# The list of packages is automatically generated later. Add other things
67
 
# that are part of BZRLIB here.
68
 
BZRLIB = {}
 
67
# that are part of BREEZY here.
 
68
BREEZY = {}
69
69
 
70
70
PKG_DATA = {# install files from selftest suite
71
71
            'package_data': {'breezy': ['doc/api/*.txt',
104
104
    return sorted(packages)
105
105
 
106
106
 
107
 
BZRLIB['packages'] = get_breezy_packages()
 
107
BREEZY['packages'] = get_breezy_packages()
108
108
 
109
109
 
110
110
from distutils import log
498
498
           }
499
499
 
500
500
    ARGS.update(META_INFO)
501
 
    ARGS.update(BZRLIB)
 
501
    ARGS.update(BREEZY)
502
502
    PKG_DATA['package_data']['breezy'].append('locale/*/LC_MESSAGES/*.mo')
503
503
    ARGS.update(PKG_DATA)
504
504
 
564
564
    gui_target = copy.copy(target)
565
565
    gui_target.dest_base = "bzrw"
566
566
 
567
 
    packages = BZRLIB['packages']
 
567
    packages = BREEZY['packages']
568
568
    packages.remove('breezy')
569
569
    packages = [i for i in packages if not i.startswith('breezy.plugins')]
570
570
    includes = []
746
746
           }
747
747
 
748
748
    ARGS.update(META_INFO)
749
 
    ARGS.update(BZRLIB)
 
749
    ARGS.update(BREEZY)
750
750
    ARGS.update(PKG_DATA)
751
751
 
752
752
    if __name__ == '__main__':