Mercurial > libervia-backend
comparison setup.py @ 3372:5d926c7b0d99
plugin app manager: first draft:
/!\ new optional dependency: pyyaml
this plugin manage the life cycle of external applications. Application handlers register
to it.
Data needed to launch an application as set in YAML files. Local data types are used to
get values directly from SàT:
- !sat_conf to retrieve a configuration value
- !sat_generate_pwd to generate a password
- !sat_param for parameters specified a launch
Data can be exposed when an instance is launched, this can be used to specify the port
(notably the one used for web), or a generated password.
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 28 Sep 2020 21:10:30 +0200 |
parents | a3f940e3d72e |
children | 3ac28e51a24f |
comparison
equal
deleted
inserted
replaced
3371:e8d74ac7c479 | 3372:5d926c7b0d99 |
---|---|
36 'pillow >= 6.0.0', | 36 'pillow >= 6.0.0', |
37 'progressbar2', | 37 'progressbar2', |
38 'cryptography', | 38 'cryptography', |
39 'pygments', | 39 'pygments', |
40 'pygobject', | 40 'pygobject', |
41 'PyOpenSSL', | 41 'pyopenssl', |
42 'python-dateutil', | 42 'python-dateutil', |
43 'python-potr', | 43 'python-potr', |
44 'pyxdg', | 44 'pyxdg', |
45 'sat_tmp >= 0.7.0a4', | 45 'sat_tmp >= 0.7.0a4', |
46 'shortuuid', | 46 'shortuuid', |
49 'urwid >= 1.2.0', | 49 'urwid >= 1.2.0', |
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 'pyyaml', | |
54 ] | 55 ] |
55 | 56 |
56 extras_require = { | 57 extras_require = { |
57 "SVG": ["CairoSVG"], | 58 "SVG": ["CairoSVG"], |
58 } | 59 } |