mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-08-08 12:59:46 +00:00
Add Python type hints to attributes of TL types (#678)
This commit is contained in:
5
setup.py
5
setup.py
@@ -13,7 +13,7 @@ Extra supported commands are:
|
||||
|
||||
# To use a consistent encoding
|
||||
from codecs import open
|
||||
from sys import argv
|
||||
from sys import argv, version_info
|
||||
import os
|
||||
import re
|
||||
|
||||
@@ -153,7 +153,8 @@ def main():
|
||||
'telethon_generator/parser/tl_object.py',
|
||||
'telethon_generator/parser/tl_parser.py',
|
||||
]),
|
||||
install_requires=['pyaes', 'rsa'],
|
||||
install_requires=['pyaes', 'rsa',
|
||||
'typing' if version_info < (3, 5) else ""],
|
||||
extras_require={
|
||||
'cryptg': ['cryptg'],
|
||||
'sqlalchemy': ['sqlalchemy']
|
||||
|
Reference in New Issue
Block a user