view setup.py @ 3104:118d91c932a7

plugin XEP-0384: OMEMO for MUC implementation: - encryption is now allowed for group chats - when an encryption is requested for a MUC, real jids or all occupants are used to encrypt the message - a cache for plain text message sent to MUC is used, because for security reason we can't encrypt message for our own device with OMEMO (that would prevent ratchet and break the prefect forward secrecy). Thus, message sent in MUC are cached for 5 min, and the decrypted version is used when found. We don't send immediately the plain text message to frontends and history because we want to keep the same MUC behaviour as for plain text, and receiving a message means that it was received and sent back by MUC service - <origin-id> is used to identify messages sent by our device - a feedback_jid is now use to use correct entity for feedback message in case of problem: with a room we have to send feedback message to the room and not the the emitter - encryptMessage now only accepts list in the renamed "entity_bare_jids" argument
author Goffi <goffi@goffi.org>
date Mon, 30 Dec 2019 20:59:46 +0100
parents 4f8bdf50593f
children 5d3b6efac044
line wrap: on
line source

#!/usr/bin/env python3

# SAT: an XMPP client
# Copyright (C) 2009-2019  Jérôme Poisson (goffi@goffi.org)
# Copyright (C) 2013-2016 Adrien Cossa (souliane@mailoo.org)

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.

# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

from setuptools import setup, find_packages
import os

NAME = 'sat'

install_requires = [
    'babel',
    'dbus-python',
    'html2text',
    'jinja2>=2.10.3',
    'langid',
    'lxml >= 3.1.0',
    'markdown >= 3.0',
    'miniupnpc',
    'mutagen',
    'netifaces',
    'pillow',
    'progressbar',
    'pycrypto >= 2.6.1',
    'cryptography',
    'pygments',
    'pygobject',
    'PyOpenSSL',
    'python-dateutil',
    'python-potr',
    'pyxdg',
    'sat_tmp >= 0.7.0a4',
    'shortuuid',
    'twisted[tls] >= 19.7.0',
    'treq',
    'urwid >= 1.2.0',
    'urwid-satext >= 0.7.0a2',
    'wokkel >= 0.7.1',
    'omemo >= 0.11.0',
    'omemo-backend-signal',
]

DBUS_DIR = 'dbus-1/services'
DBUS_FILE = 'misc/org.salutatoi.SAT.service'
with open(os.path.join(NAME, 'VERSION')) as f:
    VERSION = f.read().strip()
is_dev_version = VERSION.endswith('D')


def sat_dev_version():
    """Use mercurial data to compute version"""
    def version_scheme(version):
        return VERSION.replace('D', '.dev0')

    def local_scheme(version):
        return "+{rev}.{distance}".format(
            rev=version.node[1:],
            distance=version.distance)

    return {
        'version_scheme': version_scheme,
        'local_scheme': local_scheme
    }


setup(
    name=NAME,
    version=VERSION,
    description="Salut à Toi multipurpose and multi frontend XMPP client",
    long_description="Salut à Toi (SàT) is a XMPP client based on a daemon/frontend "
                     "architecture. Its multi frontend (desktop, web, console "
                     "interface, CLI, etc) and multipurpose (instant messaging, "
                     "microblogging, games, file sharing, etc).",
    author="Association « Salut à Toi »",
    author_email="contact@goffi.org",
    url="https://salut-a-toi.org",
    classifiers=[
        "Programming Language :: Python :: 3 :: Only",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Development Status :: 5 - Production/Stable",
        "Environment :: Console",
        "Framework :: Twisted",
        "License :: OSI Approved :: GNU Affero General Public License v3 "
        "or later (AGPLv3+)",
        "Operating System :: POSIX :: Linux",
        "Topic :: Communications :: Chat"
    ],
    packages=find_packages() + ["twisted.plugins"],
    data_files=[("share/locale/fr/LC_MESSAGES",
                 ["i18n/fr/LC_MESSAGES/sat.mo"]),
                (os.path.join("share/doc", NAME),
                 ["CHANGELOG", "COPYING", "INSTALL", "README", "README4TRANSLATORS"]),
                (os.path.join("share", DBUS_DIR), [DBUS_FILE]),
                ],
    scripts=["sat_frontends/jp/jp", "sat_frontends/primitivus/primitivus", "bin/sat"],
    zip_safe=False,
    setup_requires=["setuptools_scm"] if is_dev_version else [],
    use_scm_version=sat_dev_version if is_dev_version else False,
    install_requires=install_requires,
    package_data={"sat": ["VERSION"]},
    python_requires=">=3.7",
)