mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
Add "fast" keyword as extra requirement
To be used instead of "tgcrypto"
This commit is contained in:
parent
09605478ef
commit
5d4e4a4842
1 changed files with 4 additions and 1 deletions
5
setup.py
5
setup.py
|
|
@ -173,7 +173,10 @@ setup(
|
|||
packages=find_packages(exclude=["compiler*"]),
|
||||
zip_safe=False,
|
||||
install_requires=read("requirements.txt"),
|
||||
extras_require={"tgcrypto": ["tgcrypto==1.1.1"]},
|
||||
extras_require={
|
||||
"tgcrypto": ["tgcrypto==1.1.1"], # TODO: Remove soon
|
||||
"fast": ["tgcrypto==1.1.1"],
|
||||
},
|
||||
cmdclass={
|
||||
"clean": Clean,
|
||||
"generate": Generate
|
||||
|
|
|
|||
Loading…
Reference in a new issue