Mercurial > libervia-backend
comparison setup.py @ 1367:f71a0fc26886
merged branch frontends_multi_profiles
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 18 Mar 2015 10:52:28 +0100 |
parents | 806a0fb6045e 0db0013c59dd |
children | 069ad98b360d |
comparison
equal
deleted
inserted
replaced
1295:1e3b1f9ad6e2 | 1367:f71a0fc26886 |
---|---|
196 to_remove.append(path) | 196 to_remove.append(path) |
197 for source, dest in self.sh_script_links: | 197 for source, dest in self.sh_script_links: |
198 if os.path.islink(dest): | 198 if os.path.islink(dest): |
199 to_remove.append(dest) | 199 to_remove.append(dest) |
200 | 200 |
201 for script in ('jp', 'wix', 'primitivus'): | 201 for script in ('jp', 'primitivus'): |
202 dest = os.path.join(self.install_scripts, script) | 202 dest = os.path.join(self.install_scripts, script) |
203 if os.path.exists(dest): | 203 if os.path.exists(dest): |
204 to_remove.append(dest) | 204 to_remove.append(dest) |
205 | 205 |
206 message = "%s:\n%s\n" % (message, "\n".join([" %s" % path for path in to_remove])) | 206 message = "%s:\n%s\n" % (message, "\n".join([" %s" % path for path in to_remove])) |
296 'Operating System :: POSIX :: Linux', | 296 'Operating System :: POSIX :: Linux', |
297 'Topic :: Communications :: Chat'], | 297 'Topic :: Communications :: Chat'], |
298 package_dir={'sat': 'src', 'sat_frontends': 'frontends/src', 'twisted.plugins': 'src/twisted/plugins'}, | 298 package_dir={'sat': 'src', 'sat_frontends': 'frontends/src', 'twisted.plugins': 'src/twisted/plugins'}, |
299 packages=['sat', 'sat.tools', 'sat.bridge', 'sat.plugins', 'sat.test', 'sat.core', 'sat.memory', | 299 packages=['sat', 'sat.tools', 'sat.bridge', 'sat.plugins', 'sat.test', 'sat.core', 'sat.memory', |
300 'sat_frontends', 'sat_frontends.bridge', 'sat_frontends.quick_frontend', 'sat_frontends.jp', | 300 'sat_frontends', 'sat_frontends.bridge', 'sat_frontends.quick_frontend', 'sat_frontends.jp', |
301 'sat_frontends.primitivus', 'sat_frontends.wix', 'sat_frontends.tools', 'sat.stdui', | 301 'sat_frontends.primitivus', 'sat_frontends.tools', 'sat.stdui','sat.tmp', 'sat.tmp.wokkel', |
302 'sat.tmp', 'sat.tmp.wokkel', 'twisted.plugins'], | 302 'twisted.plugins'], |
303 package_data={'sat': ['sat.sh'], | 303 package_data={'sat': ['sat.sh'], }, |
304 'sat_frontends': ['wix/COPYING']}, | |
305 data_files=[(os.path.join(sys.prefix, 'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/sat.mo']), | 304 data_files=[(os.path.join(sys.prefix, 'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/sat.mo']), |
306 ('share/doc/%s' % NAME, ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS']), | 305 ('share/doc/%s' % NAME, ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS']), |
307 (os.path.join('share', DBUS_DIR), (DBUS_FILE,)), | 306 (os.path.join('share', DBUS_DIR), (DBUS_FILE,)), |
308 ], | 307 ], |
309 scripts=['frontends/src/jp/jp', 'frontends/src/primitivus/primitivus', 'frontends/src/wix/wix'], | 308 scripts=['frontends/src/jp/jp', 'frontends/src/primitivus/primitivus', ], |
310 zip_safe=False, | 309 zip_safe=False, |
311 dependency_links=['http://home.avvanta.com/%7Esteveha/pyfeed-0.7.4.tar.gz', 'http://home.avvanta.com/%7Esteveha/xe-0.7.4.tar.gz'], | 310 dependency_links=['http://home.avvanta.com/%7Esteveha/pyfeed-0.7.4.tar.gz', 'http://home.avvanta.com/%7Esteveha/xe-0.7.4.tar.gz'], |
312 install_requires=['twisted', 'wokkel >= 0.7.1', 'progressbar', 'urwid >= 1.2.0', 'urwid-satext >= 0.4.0', 'pyfeed', 'xe', 'mutagen', 'pillow', 'lxml', 'pyxdg', 'markdown', 'html2text', 'pycrypto >= 2.6.1', 'python-potr'], | 311 install_requires=['twisted', 'wokkel >= 0.7.1', 'progressbar', 'urwid >= 1.2.0', 'urwid-satext >= 0.4.0', 'pyfeed', 'xe', 'mutagen', 'pillow', 'lxml', 'pyxdg', 'markdown', 'html2text', 'pycrypto >= 2.6.1', 'python-potr'], |
313 cmdclass={'install': CustomInstall}, | 312 cmdclass={'install': CustomInstall}, |
314 ) # XXX: wxpython doesn't work, it's managed with preinstall_check | 313 ) # XXX: wxpython doesn't work, it's managed with preinstall_check |