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",
|
2021-09-02 05:42:50 -04:00
|
|
|
version="0.10.3",
|
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-05-27 12:43:55 -04:00
|
|
|
"attrs >= 19.3.0",
|
2020-05-27 13:14:40 -04:00
|
|
|
"aiohttp >= 3.6, < 4.0",
|
2020-05-27 12:43:55 -04:00
|
|
|
"appdirs >= 1.4.4",
|
|
|
|
"click >= 7.1.2",
|
|
|
|
"keyring >= 21.2.1",
|
|
|
|
"logbook >= 1.5.3",
|
|
|
|
"peewee >= 3.13.1",
|
|
|
|
"janus >= 0.5",
|
2020-12-02 05:24:28 -05:00
|
|
|
"cachetools >= 3.0.0",
|
2020-12-02 06:43:20 -05:00
|
|
|
"prompt_toolkit > 2, < 4",
|
2019-03-21 06:05:12 -04:00
|
|
|
"typing;python_version<'3.5'",
|
2021-07-14 07:48:16 -04:00
|
|
|
"matrix-nio[e2e] >= 0.18, < 0.19"
|
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-09-30 05:22:00 -04:00
|
|
|
"dbus-python >= 1.2, < 1.3",
|
2020-12-02 06:43:20 -05:00
|
|
|
"PyGObject >= 3.36, < 3.39",
|
2020-09-30 05:22:00 -04:00
|
|
|
"pydbus >= 0.6, < 0.7",
|
|
|
|
"notify2 >= 0.3, < 0.4",
|
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
|
|
|
|
)
|