mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-22 17:36:34 +03:00
89 lines
2.8 KiB
Python
89 lines
2.8 KiB
Python
|
"""A setuptools based setup module.
|
||
|
|
||
|
See:
|
||
|
https://packaging.python.org/en/latest/distributing.html
|
||
|
https://github.com/pypa/sampleproject
|
||
|
"""
|
||
|
|
||
|
from telethon import TelegramClient
|
||
|
|
||
|
# Always prefer setuptools over distutils
|
||
|
from setuptools import setup, find_packages
|
||
|
# To use a consistent encoding
|
||
|
from codecs import open
|
||
|
from os import path
|
||
|
|
||
|
here = path.abspath(path.dirname(__file__))
|
||
|
|
||
|
# Get the long description from the README file
|
||
|
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
||
|
long_description = f.read()
|
||
|
|
||
|
setup(
|
||
|
name='Telethon',
|
||
|
|
||
|
# Versions should comply with PEP440.
|
||
|
version=TelegramClient.__version__,
|
||
|
|
||
|
description="Python3 Telegram's client implementation with full access to its API",
|
||
|
long_description=long_description,
|
||
|
|
||
|
# The project's main homepage.
|
||
|
url='https://github.com/LonamiWebs/Telethon',
|
||
|
download_url='https://github.com/LonamiWebs/Telethon/releases',
|
||
|
|
||
|
# Author details
|
||
|
author='Lonami Exo',
|
||
|
author_email='totufals@hotmail.com',
|
||
|
|
||
|
# Choose your license
|
||
|
license='MIT',
|
||
|
|
||
|
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||
|
classifiers=[
|
||
|
# How mature is this project? Common values are
|
||
|
# 3 - Alpha
|
||
|
# 4 - Beta
|
||
|
# 5 - Production/Stable
|
||
|
'Development Status :: 3 - Alpha',
|
||
|
|
||
|
# Indicate who your project is intended for
|
||
|
'Intended Audience :: Developers',
|
||
|
'Topic :: Communications :: Chat',
|
||
|
|
||
|
# Pick your license as you wish (should match "license" above)
|
||
|
'License :: OSI Approved :: MIT License',
|
||
|
|
||
|
# Specify the Python versions you support here. In particular, ensure
|
||
|
# that you indicate whether you support Python 2, Python 3 or both.
|
||
|
'Programming Language :: Python :: 3',
|
||
|
'Programming Language :: Python :: 3.3',
|
||
|
'Programming Language :: Python :: 3.4',
|
||
|
'Programming Language :: Python :: 3.5',
|
||
|
],
|
||
|
|
||
|
# What does your project relate to?
|
||
|
keywords='telegram api chat client mtproto',
|
||
|
|
||
|
# You can just specify the packages manually here if your project is
|
||
|
# simple. Or you can use find_packages().
|
||
|
packages=find_packages(exclude=[
|
||
|
'telethon_generator',
|
||
|
'telethon_tests',
|
||
|
'run_tests.py',
|
||
|
'try_telethon.py']),
|
||
|
|
||
|
# List run-time dependencies here. These will be installed by pip when
|
||
|
# your project is installed.
|
||
|
install_requires=['pyaes'],
|
||
|
|
||
|
# To provide executable scripts, use entry points in preference to the
|
||
|
# "scripts" keyword. Entry points provide cross-platform support and allow
|
||
|
# pip to create the appropriate form of executable for the target platform.
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'gen_tl = tl_generator:clean_and_generate',
|
||
|
],
|
||
|
}
|
||
|
)
|