-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'matrix-org:master' into decrypt-initial-dm
- Loading branch information
Showing
15 changed files
with
165 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,6 @@ | |
import asyncio | ||
import os | ||
import signal | ||
from typing import Optional | ||
|
||
import click | ||
import janus | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,7 @@ | |
url="https://github.com/matrix-org/pantalaimon", | ||
author="The Matrix.org Team", | ||
author_email="[email protected]", | ||
description=("A Matrix proxy daemon that adds E2E encryption " | ||
"capabilities."), | ||
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", | ||
|
@@ -29,19 +28,21 @@ | |
"cachetools >= 3.0.0", | ||
"prompt_toolkit > 2, < 4", | ||
"typing;python_version<'3.5'", | ||
"matrix-nio[e2e] >= 0.20, < 0.21" | ||
"matrix-nio[e2e] >= 0.24, < 0.25.2", | ||
], | ||
extras_require={ | ||
"ui": [ | ||
"dbus-python >= 1.2, < 1.3", | ||
"PyGObject >= 3.36, < 3.39", | ||
"pydbus >= 0.6, < 0.7", | ||
"dasbus == 1.7", | ||
"notify2 >= 0.3, < 0.4", | ||
] | ||
}, | ||
entry_points={ | ||
"console_scripts": ["pantalaimon=pantalaimon.main:main", | ||
"panctl=pantalaimon.panctl:main"], | ||
"console_scripts": [ | ||
"pantalaimon=pantalaimon.main:main", | ||
"panctl=pantalaimon.panctl:main", | ||
], | ||
}, | ||
zip_safe=False | ||
zip_safe=False, | ||
) |
Oops, something went wrong.