comparison setup.py @ 3259:f300d78f08f3

core: image convertion + SVG support: /!\ new optional dependency: CairoSVG (with installed `[SVG]` extra) - new `convert` method in `tools.image` to save an image in an other format, with support for SVG (when CairoSVG is available) - new `imageConvert` method is available for frontends
author Goffi <goffi@goffi.org>
date Sun, 19 Apr 2020 16:53:44 +0200
parents 330a5f1d9eea
children a3639d6d9643
comparison
equal deleted inserted replaced
3258:7aa01e262e05 3259:f300d78f08f3
50 'urwid-satext >= 0.7.0a2', 50 'urwid-satext >= 0.7.0a2',
51 'wokkel >= 0.7.1', 51 'wokkel >= 0.7.1',
52 'omemo >= 0.11.0', 52 'omemo >= 0.11.0',
53 'omemo-backend-signal', 53 'omemo-backend-signal',
54 ] 54 ]
55
56 extras_require = {
57 "SVG": ["CairoSVG"],
58 }
55 59
56 DBUS_DIR = 'dbus-1/services' 60 DBUS_DIR = 'dbus-1/services'
57 DBUS_FILE = 'misc/org.salutatoi.SAT.service' 61 DBUS_FILE = 'misc/org.salutatoi.SAT.service'
58 with open(os.path.join(NAME, 'VERSION')) as f: 62 with open(os.path.join(NAME, 'VERSION')) as f:
59 VERSION = f.read().strip() 63 VERSION = f.read().strip()