Fork rebranding

This commit is contained in:
Konstantin M 2018-03-14 02:16:35 +03:00
parent 9e3daa31f3
commit 3dc75965e2
2 changed files with 12 additions and 8 deletions

View File

@ -2,3 +2,4 @@ cryptg
pysocks pysocks
hachoir3 hachoir3
sqlalchemy sqlalchemy
redis

View File

@ -79,7 +79,7 @@ def main():
# Try importing the telethon module to assert it has no errors # Try importing the telethon module to assert it has no errors
try: try:
import telethon import telethon
except: except Exception:
print('Packaging for PyPi aborted, importing the module failed.') print('Packaging for PyPi aborted, importing the module failed.')
return return
@ -113,16 +113,18 @@ def main():
version = re.search(r"^__version__\s*=\s*'(.*)'.*$", version = re.search(r"^__version__\s*=\s*'(.*)'.*$",
f.read(), flags=re.MULTILINE).group(1) f.read(), flags=re.MULTILINE).group(1)
setup( setup(
name='Telethon', name='Telethon-ezdev128',
version=version, version=version,
description="Full-featured Telegram client library for Python 3", description="Full-featured Telegram client library for Python 3 (ezdev128's fork-and-merge)",
long_description=long_description, long_description=long_description,
url='https://github.com/LonamiWebs/Telethon', url='https://github.com/ezdev128/Telethon',
download_url='https://github.com/LonamiWebs/Telethon/releases', download_url='https://github.com/ezdev128/Telethon/releases',
author='Lonami Exo', author='Konstantin M.',
author_email='totufals@hotmail.com', author_email='ezdev128@yandex.com',
maintainer='Konstantin M.',
maintainer_email='ezdev128@yandex.com',
license='MIT', license='MIT',
@ -157,7 +159,8 @@ def main():
'typing' if version_info < (3, 5) else ""], 'typing' if version_info < (3, 5) else ""],
extras_require={ extras_require={
'cryptg': ['cryptg'], 'cryptg': ['cryptg'],
'sqlalchemy': ['sqlalchemy'] 'sqlalchemy': ['sqlalchemy'],
'redis': ['redis'],
} }
) )