mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
115 lines
3.8 KiB
Python
Executable File
115 lines
3.8 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""A setuptools based setup module.
|
|
|
|
See:
|
|
https://packaging.python.org/en/latest/distributing.html
|
|
https://github.com/pypa/sampleproject
|
|
|
|
Extra supported commands are:
|
|
* gen_tl, to generate the classes required for Telethon to run
|
|
* clean_tl, to clean these generated classes
|
|
* pypi, to generate sdist, bdist_wheel, and push to PyPi
|
|
"""
|
|
|
|
# To use a consistent encoding
|
|
from codecs import open
|
|
from sys import argv
|
|
from os import path
|
|
|
|
# Always prefer setuptools over distutils
|
|
from setuptools import find_packages, setup
|
|
|
|
try:
|
|
from telethon import TelegramClient
|
|
except Exception as e:
|
|
print('Failed to import TelegramClient due to', e)
|
|
TelegramClient = None
|
|
|
|
|
|
if __name__ == '__main__':
|
|
if len(argv) >= 2 and argv[1] == 'gen_tl':
|
|
from telethon_generator.tl_generator import TLGenerator
|
|
generator = TLGenerator('telethon/tl')
|
|
if generator.tlobjects_exist():
|
|
print('Detected previous TLObjects. Cleaning...')
|
|
generator.clean_tlobjects()
|
|
|
|
print('Generating TLObjects...')
|
|
generator.generate_tlobjects(
|
|
'telethon_generator/scheme.tl', import_depth=2
|
|
)
|
|
print('Done.')
|
|
|
|
elif len(argv) >= 2 and argv[1] == 'clean_tl':
|
|
from telethon_generator.tl_generator import TLGenerator
|
|
print('Cleaning...')
|
|
TLGenerator('telethon/tl').clean_tlobjects()
|
|
print('Done.')
|
|
|
|
elif len(argv) >= 2 and argv[1] == 'pypi':
|
|
# Need python3.5 or higher, but Telethon is supposed to support 3.x
|
|
# Place it here since noone should be running ./setup.py pypi anyway
|
|
from subprocess import run
|
|
from shutil import rmtree
|
|
|
|
for x in ('build', 'dist', 'Telethon.egg-info'):
|
|
rmtree(x, ignore_errors=True)
|
|
run('python3 setup.py sdist', shell=True)
|
|
run('python3 setup.py bdist_wheel', shell=True)
|
|
run('twine upload dist/*', shell=True)
|
|
for x in ('build', 'dist', 'Telethon.egg-info'):
|
|
rmtree(x, ignore_errors=True)
|
|
|
|
else:
|
|
if not TelegramClient:
|
|
print('Run `python3', argv[0], 'gen_tl` first.')
|
|
quit()
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
|
|
# Get the long description from the README file
|
|
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name='Telethon',
|
|
|
|
# Versions should comply with PEP440.
|
|
version=TelegramClient.__version__,
|
|
description="Full-featured Telegram client library for Python 3",
|
|
long_description=long_description,
|
|
|
|
url='https://github.com/LonamiWebs/Telethon',
|
|
download_url='https://github.com/LonamiWebs/Telethon/releases',
|
|
|
|
author='Lonami Exo',
|
|
author_email='totufals@hotmail.com',
|
|
|
|
license='MIT',
|
|
|
|
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
classifiers=[
|
|
# 3 - Alpha
|
|
# 4 - Beta
|
|
# 5 - Production/Stable
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
'Topic :: Communications :: Chat',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6'
|
|
],
|
|
keywords='telegram api chat client library messaging mtproto',
|
|
packages=find_packages(exclude=[
|
|
'telethon_generator', 'telethon_tests', 'run_tests.py',
|
|
'try_telethon.py'
|
|
]),
|
|
install_requires=['pyaes', 'rsa']
|
|
)
|