forked from JingMatrix/tg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 830 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 830 Bytes
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
from setuptools import setup
import tg
with open("readme.md", "r") as fh:
readme = fh.read()
setup(
long_description=readme,
long_description_content_type="text/markdown",
name="tg",
version=tg.__version__,
description="Terminal client for telegram",
url="https://github.com/paul-nameless/tg",
author="Paul Nameless",
author_email="reacsdas@gmail.com",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=["tg"],
entry_points={"console_scripts": ["tg = tg.__main__:main"]},
python_requires=">=3.8",
install_requires=["python-telegram==0.18.0"],
)