2020-07-22 08:56:00 +00:00
|
|
|
import tg
|
2021-04-21 11:54:49 +00:00
|
|
|
from setuptools import setup
|
2020-07-22 08:56:00 +00:00
|
|
|
|
|
|
|
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",
|
2021-04-21 11:54:49 +00:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2020-07-22 08:56:00 +00:00
|
|
|
],
|
|
|
|
packages=["tg"],
|
|
|
|
entry_points={"console_scripts": ["tg = tg.__main__:main"]},
|
|
|
|
python_requires=">=3.8",
|
2021-04-21 11:54:49 +00:00
|
|
|
install_requires=["python-telegram==0.14.0"],
|
2020-07-22 08:56:00 +00:00
|
|
|
)
|