pantalaimon/setup.py

48 lines
1.3 KiB
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
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
2019-03-21 06:05:12 -04:00
setup(
name="pantalaimon",
2020-05-27 11:10:55 -04:00
version="0.6.2",
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."),
long_description=long_description,
long_description_content_type="text/markdown",
2019-03-21 06:05:12 -04:00
license="Apache License, Version 2.0",
packages=find_packages(),
install_requires=[
"attrs <= 19.3",
"aiohttp <= 3.6",
"appdirs <= 1.4",
"click <= 7.1",
"keyring <= 21.2",
"logbook <= 1.5",
"peewee <= 3.13",
"janus <= 0.5",
"cachetools >= 3.0"
"prompt_toolkit>2<4",
2019-03-21 06:05:12 -04:00
"typing;python_version<'3.5'",
"matrix-nio[e2e] <= 0.12"
2019-03-21 06:05:12 -04:00
],
extras_require={
"ui": [
"dbus-python <= 1.2",
"PyGObject <= 3.36",
"pydbus <= 0.6",
"notify2 <= 0.3",
]
},
entry_points={
"console_scripts": ["pantalaimon=pantalaimon.main:main",
"panctl=pantalaimon.panctl:main"],
},
2019-03-21 06:05:12 -04:00
zip_safe=False
)