mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2024-10-01 03:35:38 -04:00
29 lines
790 B
Python
29 lines
790 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
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."),
|
|
license="Apache License, Version 2.0",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"attrs",
|
|
"aiohttp",
|
|
"appdirs",
|
|
"click",
|
|
"logbook",
|
|
"typing;python_version<'3.5'",
|
|
"matrix-nio @ git+https://github.com/poljar/matrix-nio.git@async#egg=matrix-nio-0"
|
|
],
|
|
entry_points={
|
|
"console_scripts": ["pantalaimon=pantalaimon.daemon:main"],
|
|
},
|
|
zip_safe=False
|
|
)
|