comparison setup.py @ 227:533507bb4e32

distutils wix installation
author Goffi <goffi@goffi.org>
date Wed, 05 Jan 2011 18:46:26 +0100
parents fd9b7834d98a
children b25cbec73c1e
comparison
equal deleted inserted replaced
226:d8bb72f00eec 227:533507bb4e32
69 'Operating System :: POSIX :: Linux', 69 'Operating System :: POSIX :: Linux',
70 'Topic :: Communications :: Chat'], 70 'Topic :: Communications :: Chat'],
71 package_dir = {'sat':'src', 'sat_frontends':'frontends/src'}, 71 package_dir = {'sat':'src', 'sat_frontends':'frontends/src'},
72 packages=['sat','sat.tools','sat.bridge', 'sat.plugins', 72 packages=['sat','sat.tools','sat.bridge', 'sat.plugins',
73 'sat_frontends', 'sat_frontends.bridge', 'sat_frontends.quick_frontend', 73 'sat_frontends', 'sat_frontends.bridge', 'sat_frontends.quick_frontend',
74 'sat_frontends.primitivus'], 74 'sat_frontends.primitivus', 'sat_frontends.wix'],
75 package_data = {'sat': ['sat.tac','sat.sh']}, 75 package_data = {'sat': ['sat.tac','sat.sh'],
76 'sat_frontends': ['wix/COPYING','wix/images/*png','wix/images/cards/*','wix/images/crystal/*']},
76 data_files=[(os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/sat.mo']), 77 data_files=[(os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/sat.mo']),
77 (os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['frontends/i18n/fr/LC_MESSAGES/sat_frontend.mo']), 78 (os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['frontends/i18n/fr/LC_MESSAGES/sat_frontend.mo']),
78 (os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['frontends/src/jp/i18n/fr/LC_MESSAGES/jp.mo']), 79 (os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['frontends/src/jp/i18n/fr/LC_MESSAGES/jp.mo']),
79 ('share/doc/%s' % NAME, ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS'])], 80 ('share/doc/%s' % NAME, ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS']),
80 scripts=['frontends/src/jp/jp', 'frontends/src/primitivus/primitivus'], 81 ('share/doc/%s/misc' % NAME, ['frontends/src/wix/images/split_card.sh']),
82 ],
83 scripts=['frontends/src/jp/jp', 'frontends/src/primitivus/primitivus', 'frontends/src/wix/wix'],
81 cmdclass=dict(install=custom_install), 84 cmdclass=dict(install=custom_install),
82 ) 85 )
83 86