comparison setup.py @ 373:a3aa4d046914

core: MANIFEST.in and setup.py cleaning
author Goffi <goffi@goffi.org>
date Thu, 28 Jul 2011 01:03:22 +0200
parents 3ec237e82aed
children 813a869315dc
comparison
equal deleted inserted replaced
372:f964dcec1611 373:a3aa4d046914
196 package_dir = {'sat':'src', 'sat_frontends':'frontends/src'}, 196 package_dir = {'sat':'src', 'sat_frontends':'frontends/src'},
197 packages=['sat','sat.tools','sat.bridge', 'sat.plugins', 'sat.test', 'sat.core', 197 packages=['sat','sat.tools','sat.bridge', 'sat.plugins', 'sat.test', 'sat.core',
198 'sat_frontends', 'sat_frontends.bridge', 'sat_frontends.quick_frontend', 198 'sat_frontends', 'sat_frontends.bridge', 'sat_frontends.quick_frontend',
199 'sat_frontends.primitivus', 'sat_frontends.wix'], 199 'sat_frontends.primitivus', 'sat_frontends.wix'],
200 package_data = {'sat': ['sat.tac','sat.sh'], 200 package_data = {'sat': ['sat.tac','sat.sh'],
201 'sat_frontends': ['wix/COPYING','wix/images/*png','wix/images/cards/*','wix/images/crystal/*']}, 201 'sat_frontends': ['wix/COPYING']},
202 data_files=[(os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/sat.mo']), 202 data_files=[(os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/sat.mo']),
203 (os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['frontends/i18n/fr/LC_MESSAGES/sat_frontend.mo']), 203 (os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['frontends/i18n/fr/LC_MESSAGES/sat_frontend.mo']),
204 (os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['frontends/src/jp/i18n/fr/LC_MESSAGES/jp.mo']), 204 (os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['frontends/src/jp/i18n/fr/LC_MESSAGES/jp.mo']),
205 ('share/doc/%s' % NAME, ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS']), 205 ('share/doc/%s' % NAME, ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS']),
206 ('share/doc/%s/misc' % NAME, ['frontends/src/wix/images/split_card.sh']),
207 ], 206 ],
208 scripts=['frontends/src/jp/jp', 'frontends/src/primitivus/primitivus', 'frontends/src/wix/wix'], 207 scripts=['frontends/src/jp/jp', 'frontends/src/primitivus/primitivus', 'frontends/src/wix/wix'],
209 zip_safe=False, 208 zip_safe=False,
210 dependency_links = ['http://www.blarg.net/%7Esteveha/pyfeed-0.7.4.tar.gz','http://www.blarg.net/%7Esteveha/xe-0.7.4.tar.gz'], 209 dependency_links = ['http://www.blarg.net/%7Esteveha/pyfeed-0.7.4.tar.gz','http://www.blarg.net/%7Esteveha/xe-0.7.4.tar.gz'],
211 install_requires=['twisted', 'progressbar', 'urwid', 'beautifulsoup', 'mercurial', 'urwid-satext','pyfeed','xe'], 210 install_requires=['twisted', 'progressbar', 'urwid', 'beautifulsoup', 'mercurial', 'urwid-satext','pyfeed','xe'],
212 cmdclass=dict(install=custom_install), 211 cmdclass=dict(install=custom_install),
213 ) #XXX: The Mercurial dependency is just here to build the custom wokkel (with MUC branch), it must be removed 212 ) #XXX: The Mercurial dependency is just here to build the custom wokkel (with MUC branch), it must be removed
214 # and replace by wokkel as soon as MUC branch is officially available in wokkel main branch. 213 # and replaced by wokkel as soon as MUC branch is officially available in wokkel main branch.
215 # wxpython doesn't work, it's managed with preinstall_check 214 # wxpython doesn't work, it's managed with preinstall_check
216 215