Remove need to install Telethon manually in production setup

This commit is contained in:
Tulir Asokan
2018-02-25 21:48:31 +02:00
parent a41bf286f2
commit f37ea89e98
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -26,11 +26,12 @@ setuptools.setup(
"future-fstrings>=0.4.2",
"python-magic>=0.4.15,<0.5",
"cryptg>=0.1,<0.2",
"telethon-asyncio-git",
],
dependency_links=[
("https://github.com/LonamiWebs/Telethon/tarball/731a2956df632b10ecbbaf615cdf5eee49a4dc89#egg=Telethon"
("https://github.com/LonamiWebs/Telethon/tarball/731a2956df632b10ecbbaf615cdf5eee49a4dc89#egg=telethon-asyncio-git-0.17.4"
if sys.version_info >= (3, 6)
else "https://github.com/tulir/Telethon/tarball/b050a5360a6b465943505d6ab9fdec6f96acb8b4#egg=Telethon")
else "https://github.com/tulir/Telethon/tarball/b050a5360a6b465943505d6ab9fdec6f96acb8b4#egg=telethon-asyncio-git-0.17.4")
],
classifiers=[