-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 681 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 681 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
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.9",
],
packages=["tg"],
entry_points={"console_scripts": ["tg = tg.__main__:main"]},
python_requires=">=3.9",
install_requires=["python-telegram==0.15.0"],
)