pantalaimon/setup.py

33 lines
796 B
Python
Raw Normal View History

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",
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",
"appdirs",
"click",
"keyring",
"logbook",
"peewee",
"dbus-python",
2019-04-18 07:11:07 -04:00
"janus"
2019-03-21 06:05:12 -04:00
"typing;python_version<'3.5'",
"matrix-nio"
2019-03-21 06:05:12 -04:00
],
entry_points={
"console_scripts": ["pantalaimon=pantalaimon.daemon:main"],
},
2019-03-21 06:05:12 -04:00
zip_safe=False
)