-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
34 lines (30 loc) · 1.07 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
import setuptools
from telegram_export_channel_links import __desc__, __version__
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="telegram-export-channel-links",
version=__version__,
py_modules=["telegram_export_channel_links"],
author="Layerex",
author_email="layerex@dismail.de",
description=__desc__,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Layerex/telegram-export-channel-links",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 6 - Mature",
"Environment :: Web Environment",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
"Topic :: Utilities",
],
entry_points={
"console_scripts": [
"telegram-export-channel-links = telegram_export_channel_links:main",
],
},
install_requires=["telethon", "pystandardpaths"],
)