forked from tangyoha/telegram_media_downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.65 KB
/
setup.py
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
from distutils.core import setup
from utils import __version__
setup(
name="telegram-media-downloader",
version=__version__,
author="tangyoha",
author_email="[email protected]",
description="A simple script to download media from telegram",
url="https://github.com/tangyoha/telegram_media_downloader",
download_url="https://github.com/tangyoha/telegram_media_downloader/releases/latest",
py_modules=["media_downloader"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
project_urls={
"Tracker": "https://github.com/tangyoha/telegram_media_downloader/issues",
"Community": "https://t.me/TeegramMediaDownload",
"Source": "https://github.com/tangyoha/telegram_media_downloader",
},
python_requires="~=3.7",
)