2019-03-21 06:05:12 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-04-10 06:21:14 -04:00
|
|
|
from setuptools import find_packages, setup
|
2019-03-21 06:05:12 -04:00
|
|
|
|
2019-07-26 09:09:25 -04:00
|
|
|
with open("README.md", encoding="utf-8") as f:
|
2019-05-24 07:48:51 -04:00
|
|
|
long_description = f.read()
|
|
|
|
|
2019-03-21 06:05:12 -04:00
|
|
|
setup(
|
|
|
|
name="pantalaimon",
|
2020-02-27 12:00:42 -05:00
|
|
|
version="0.5.1",
|
2019-03-28 12:09:17 -04:00
|
|
|
url="https://github.com/matrix-org/pantalaimon",
|
2019-03-21 06:05:12 -04:00
|
|
|
author="The Matrix.org Team",
|
|
|
|
author_email="poljar@termina.org.uk",
|
|
|
|
description=("A Matrix proxy daemon that adds E2E encryption "
|
|
|
|
"capabilities."),
|
2019-05-24 07:48:51 -04:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
2019-03-21 06:05:12 -04:00
|
|
|
license="Apache License, Version 2.0",
|
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
2020-04-24 05:53:41 -04:00
|
|
|
"attrs <= 19.3.0",
|
|
|
|
"aiohttp <= 3.6.2",
|
|
|
|
"appdirs <= 1.4.3",
|
|
|
|
"click <= 7.1.1",
|
|
|
|
"keyring <= 21.2.0",
|
|
|
|
"logbook <= 1.5.3",
|
2020-04-24 06:15:37 -04:00
|
|
|
"peewee <= 3.13.3",
|
2020-04-29 10:32:36 -04:00
|
|
|
"janus <= 0.5.0",
|
2020-02-20 07:14:18 -05:00
|
|
|
"cachetools >= 3.0.0"
|
2020-04-29 10:32:36 -04:00
|
|
|
"prompt_toolkit > 2 < 4",
|
2019-03-21 06:05:12 -04:00
|
|
|
"typing;python_version<'3.5'",
|
2020-02-21 10:39:17 -05:00
|
|
|
"matrix-nio[e2e] >= 0.8.0"
|
2019-03-21 06:05:12 -04:00
|
|
|
],
|
2019-07-03 11:44:07 -04:00
|
|
|
extras_require={
|
2019-07-12 08:47:20 -04:00
|
|
|
"ui": [
|
2020-04-24 05:53:41 -04:00
|
|
|
"dbus-python <= 1.2.16",
|
|
|
|
"PyGObject <= 3.36.0",
|
|
|
|
"pydbus <= 0.6.0",
|
|
|
|
"notify2 <= 0.3.1",
|
2019-07-03 11:44:07 -04:00
|
|
|
]
|
|
|
|
},
|
2019-03-25 04:34:05 -04:00
|
|
|
entry_points={
|
2019-05-08 10:27:29 -04:00
|
|
|
"console_scripts": ["pantalaimon=pantalaimon.main:main",
|
2019-04-22 15:28:15 -04:00
|
|
|
"panctl=pantalaimon.panctl:main"],
|
2019-03-25 04:34:05 -04:00
|
|
|
},
|
2019-03-21 06:05:12 -04:00
|
|
|
zip_safe=False
|
|
|
|
)
|