2019-03-21 11:05:12 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-04-10 12:21:14 +02:00
|
|
|
from setuptools import find_packages, setup
|
2019-03-21 11:05:12 +01:00
|
|
|
|
2019-05-24 13:48:51 +02:00
|
|
|
with open('README.md') as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
2019-03-21 11:05:12 +01:00
|
|
|
setup(
|
|
|
|
name="pantalaimon",
|
|
|
|
version="0.1",
|
2019-03-28 17:09:17 +01:00
|
|
|
url="https://github.com/matrix-org/pantalaimon",
|
2019-03-21 11:05:12 +01: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 13:48:51 +02:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
2019-03-21 11:05:12 +01:00
|
|
|
license="Apache License, Version 2.0",
|
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
|
|
|
"attrs",
|
|
|
|
"aiohttp",
|
2019-03-21 16:38:30 +01:00
|
|
|
"appdirs",
|
2019-03-28 17:07:57 +01:00
|
|
|
"click",
|
2019-04-17 13:30:54 +02:00
|
|
|
"keyring",
|
2019-04-04 11:30:42 +02:00
|
|
|
"logbook",
|
2019-04-10 12:03:17 +02:00
|
|
|
"peewee",
|
2019-05-23 14:46:48 +02:00
|
|
|
"dbus-python",
|
2019-05-23 18:18:58 +02:00
|
|
|
"PyGObject",
|
2019-05-13 16:31:27 +02:00
|
|
|
"pydbus",
|
2019-04-22 21:28:15 +02:00
|
|
|
"janus",
|
|
|
|
"prompt_toolkit",
|
2019-05-22 16:40:15 +02:00
|
|
|
"notify2",
|
2019-03-21 11:05:12 +01:00
|
|
|
"typing;python_version<'3.5'",
|
2019-05-16 17:06:32 +02:00
|
|
|
"matrix-nio[e2e]"
|
2019-03-21 11:05:12 +01:00
|
|
|
],
|
2019-03-25 09:34:05 +01:00
|
|
|
entry_points={
|
2019-05-08 16:27:29 +02:00
|
|
|
"console_scripts": ["pantalaimon=pantalaimon.main:main",
|
2019-04-22 21:28:15 +02:00
|
|
|
"panctl=pantalaimon.panctl:main"],
|
2019-03-25 09:34:05 +01:00
|
|
|
},
|
2019-03-21 11:05:12 +01:00
|
|
|
zip_safe=False
|
|
|
|
)
|