pantalaimon/setup.py

38 lines
946 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",
"PyGObject",
"pydbus",
"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
],
entry_points={
"console_scripts": ["pantalaimon=pantalaimon.main:main",
"panctl=pantalaimon.panctl:main"],
},
2019-03-21 06:05:12 -04:00
zip_safe=False
)