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,
)