Mercurial > libervia-backend
changeset 2679:d51a3381cb78
install: don't do conditional requirement for omemo anymore, it should now work on all unixes
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 23 Sep 2018 17:02:47 +0200 |
parents | 35a513811540 |
children | ae5340b57ff8 |
files | setup.py |
diffstat | 1 files changed, 1 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Thu Sep 20 19:52:47 2018 +0200 +++ b/setup.py Sun Sep 23 17:02:47 2018 +0200 @@ -20,7 +20,6 @@ from setuptools import setup, find_packages import os -import platform NAME = 'sat' @@ -51,12 +50,9 @@ 'urwid >= 1.2.0', 'urwid-satext >= 0.6.1', 'wokkel >= 0.7.1', + 'omemo', ] -if platform.system() in ('Linux', 'Windows'): - # python-omemo is currently supported only on those platforms - install_requires.append('omemo') - DBUS_DIR = 'dbus-1/services' DBUS_FILE = 'misc/org.salutatoi.SAT.service' with open(os.path.join(NAME, 'VERSION')) as f: