comparison setup.py @ 914:0c0551967bdf

server, browser: partial Libervia fix Libervia was broken following the refactorings. This commit partially fixes it : Libervia is starting, avatar, blog and message are working again, but not everything is restablished yet. following things have been fixed/changed: - new dependency: shortuuid - D-Bus bridge is working again - fixed naming in several bridge methods - register method changed to register_signal - fixed Chat widget, which was not working anymore since the refactoring - avatar now use avatarGet. Cache dir is accessible using a session specific uuid, to avoid cache leak (i.e. accessing cache of other profiles) - server: new uuid attribute in session data Browser code is not fully working yet, notably OTR and contact list are not fully fixed.
author Goffi <goffi@goffi.org>
date Sun, 26 Feb 2017 18:32:47 +0100
parents bc2082685234
children 1bbc29aad56a
comparison
equal deleted inserted replaced
913:58f611481e6d 914:0c0551967bdf
300 [(os.path.join('share', NAME, root), 300 [(os.path.join('share', NAME, root),
301 [os.path.join(root, f) for f in files]) 301 [os.path.join(root, f) for f in files])
302 for root, dirs, files in os.walk(C.THEMES_DIR)], 302 for root, dirs, files in os.walk(C.THEMES_DIR)],
303 scripts=[], 303 scripts=[],
304 zip_safe=False, 304 zip_safe=False,
305 install_requires=['sat', 'twisted', 'txJSON-RPC<5', 'zope.interface', 'pyopenssl', 'jinja2'], 305 install_requires=['sat', 'twisted', 'txJSON-RPC<5', 'zope.interface', 'pyopenssl', 'jinja2', 'shortuuid'],
306 cmdclass={'install': CustomInstall}, 306 cmdclass={'install': CustomInstall},
307 ) 307 )