arigram/setup.py
Ari Archer 22c545703a
0.1.6: make it work with python-telegram >0.16.0
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2023-01-15 16:12:16 +02:00

32 lines
961 B
Python

from setuptools import setup
import arigram
with open("README.md", "r") as fh:
readme = fh.read()
with open("requirements.txt", "r") as fr:
reqs = list(map(str.strip, fr.readlines()))
setup(
long_description=readme,
long_description_content_type="text/markdown",
name="arigram",
version=arigram.__version__,
description="A fork of tg -- a hackable telegram TUI client",
url="https://github.com/TruncatedDinosour/arigram",
author="TruncatedDinosour",
author_email="ari.web.xyz@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=["arigram"],
entry_points={"console_scripts": ["arigram = arigram.__main__:main"]},
python_requires=">=3.8",
install_requires=reqs,
)