telegram_media_downloader/setup.py
2020-12-30 12:15:27 +01:00

42 lines
1.6 KiB
Python

from distutils.core import setup
from utils import __version__
setup(
name="telegram-media-downloader",
version=__version__,
author="Dineshkarthik Raveendran",
author_email="hello@dineshkarthik.me",
description="A simple script to download media from telegram",
url="https://github.com/Dineshkarthik/telegram_media_downloader",
download_url="https://github.com/Dineshkarthik/telegram_media_downloader/releases/latest",
py_modules=["media_downloader"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
project_urls={
"Tracker": "https://github.com/Dineshkarthik/telegram_media_downloader/issues",
"Community": "https://t.me/tmdannouncements",
"Source": "https://github.com/Dineshkarthik/telegram_media_downloader",
},
python_requires=">=3.6",
)