pantalaimon/setup.py
2019-07-13 13:58:34 +02:00

50 lines
1.2 KiB
Python

# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open('README.md') as f:
long_description = f.read()
setup(
name="pantalaimon",
version="0.1",
url="https://github.com/matrix-org/pantalaimon",
author="The Matrix.org Team",
author_email="poljar@termina.org.uk",
description=("A Matrix proxy daemon that adds E2E encryption "
"capabilities."),
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache License, Version 2.0",
packages=find_packages(),
install_requires=[
"attrs",
"aiohttp",
"appdirs",
"click",
"keyring",
"logbook",
"peewee",
"janus",
"prompt_toolkit",
"typing;python_version<'3.5'",
"matrix-nio[e2e] >= 0.4.1"
],
extras_require={
"e2e_search": [
"tantivy",
],
"ui": [
"dbus-python",
"PyGObject",
"pydbus",
"notify2",
]
},
entry_points={
"console_scripts": ["pantalaimon=pantalaimon.main:main",
"panctl=pantalaimon.panctl:main"],
},
zip_safe=False
)