2020-12-30 19:15:27 +08:00
|
|
|
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",
|
2021-01-11 21:51:26 +08:00
|
|
|
"Community": "https://t.me/tgmdnews",
|
2020-12-30 19:15:27 +08:00
|
|
|
"Source": "https://github.com/Dineshkarthik/telegram_media_downloader",
|
|
|
|
},
|
|
|
|
python_requires=">=3.6",
|
|
|
|
)
|