1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/usr/bin/env python3
import re
from setuptools import setup
with open("telegram_send/version.py") as f:
__version__ = re.search('"(.+)"', f.read()).group(1)
with open("README.md") as f:
long_description = f.read()
setup(
name="telegram-send",
version=__version__,
description="Send messages and files over Telegram from the command-line.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rahiel/telegram-send",
license="GPLv3+",
python_requires=">=3.7", # also update classifier below
packages=["telegram_send"],
install_requires=["python-telegram-bot==20.6", "colorama", "platformdirs"],
entry_points={"console_scripts": ["telegram-send=telegram_send.telegram_send:main"]},
author="Rahiel Kasim",
author_email="rahielkasim@gmail.com",
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers=[
# "Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.7",
"Topic :: Communications :: Chat",
"Topic :: Utilities"
],
keywords="telegram send message file"
)
|