From 373f8ed0514536bb798ecfa3da64b7db74c39edf Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Mon, 29 Jan 2018 21:39:07 +0200 Subject: [PATCH] Fix matrix-python-sdk dependency in setup.py --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index abffd047..840f7feb 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,6 @@ setuptools.setup( install_requires=[ "Telethon>=0.16.2.3,<0.17", - "git://github.com/Cadair/matrix-python-sdk@1fab9821d98d15769e44e66f714d00a32a48d692#egg=matrix_client", "aiohttp>=2.3.9,<3", "SQLAlchemy>=1.2.2,<2", "Markdown>=2.6.11,<3", @@ -24,6 +23,9 @@ setuptools.setup( "future-fstrings>=0.4.1", "python-magic>=0.4.15,<0.5", ], + dependency_links=[ + "https://github.com/Cadair/matrix-python-sdk/tarball/1fab9821d98d15769e44e66f714d00a32a48d692#egg=matrix_client" + ], classifiers=[ "Development Status :: 4 Beta",