2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-31 14:25:55 +00:00

Add TgCrypto as an extra requirement

This commit is contained in:
Dan
2018-02-17 16:06:22 +01:00
parent 69e4ebfa55
commit 5826470c77

View File

@@ -67,6 +67,14 @@ setup(
],
packages=find_packages(),
zip_safe=False,
install_requires=["pyaes", "pysocks"],
install_requires=[
"pyaes",
"pysocks"
],
extras_require={
"tgcrypto": [
"tgcrypto"
]
},
include_package_data=True,
)