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
|
|
|
|
|
|
|
setup(
|
|
|
|
name="pantalaimon",
|
|
|
|
version="0.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."),
|
|
|
|
license="Apache License, Version 2.0",
|
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
|
|
|
"attrs",
|
|
|
|
"aiohttp",
|
2019-03-21 11:38:30 -04:00
|
|
|
"appdirs",
|
2019-03-28 12:07:57 -04:00
|
|
|
"click",
|
2019-04-17 07:30:54 -04:00
|
|
|
"keyring",
|
2019-04-04 05:30:42 -04:00
|
|
|
"logbook",
|
2019-04-10 06:03:17 -04:00
|
|
|
"peewee",
|
2019-05-23 08:46:48 -04:00
|
|
|
"dbus-python",
|
2019-05-23 12:18:58 -04:00
|
|
|
"PyGObject",
|
2019-05-13 10:31:27 -04:00
|
|
|
"pydbus",
|
2019-04-22 15:28:15 -04:00
|
|
|
"janus",
|
|
|
|
"prompt_toolkit",
|
2019-05-22 10:40:15 -04:00
|
|
|
"notify2",
|
2019-03-21 06:05:12 -04:00
|
|
|
"typing;python_version<'3.5'",
|
2019-05-16 11:06:32 -04:00
|
|
|
"matrix-nio[e2e]"
|
2019-03-21 06:05:12 -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
|
|
|
|
)
|