We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f8d605 commit 8bb54afCopy full SHA for 8bb54af
setup.py
@@ -2,7 +2,8 @@
2
3
from mautrix import __version__
4
5
-test_dependencies = ["aiosqlite", "sqlalchemy", "asyncpg"]
+encryption_dependencies = ["python-olm", "unpaddedbase64", "pycryptodome"]
6
+test_dependencies = ["aiosqlite", "sqlalchemy", "asyncpg", *encryption_dependencies]
7
8
setuptools.setup(
9
name="mautrix",
@@ -29,6 +30,7 @@
29
30
"detect_mimetype": ["python-magic>=0.4.15,<0.5"],
31
"lint": ["black==22.1.0", "isort"],
32
"test": ["pytest", "pytest-asyncio", *test_dependencies],
33
+ "encryption": encryption_dependencies,
34
},
35
tests_require=test_dependencies,
36
python_requires="~=3.8",
0 commit comments