Bump python-telegram version (#213)

This commit is contained in:
Nameless 2021-04-21 14:54:49 +03:00 committed by GitHub
parent 0b28232bb0
commit 20273fd068
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

@ -8,9 +8,10 @@ home-page = 'https://github.com/paul-nameless/tg'
classifiers = [ classifiers = [
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
] ]
requires-python = ">=3.8" requires-python = ">=3.8"
requires = ['python-telegram==0.12.0'] requires = ['python-telegram==0.14.0']
[tool.flit.scripts] [tool.flit.scripts]
tg = "tg.__main__:main" tg = "tg.__main__:main"

View file

@ -1,6 +1,5 @@
from setuptools import setup
import tg import tg
from setuptools import setup
with open("readme.md", "r") as fh: with open("readme.md", "r") as fh:
readme = fh.read() readme = fh.read()
@ -18,9 +17,10 @@ setup(
classifiers=[ classifiers=[
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
], ],
packages=["tg"], packages=["tg"],
entry_points={"console_scripts": ["tg = tg.__main__:main"]}, entry_points={"console_scripts": ["tg = tg.__main__:main"]},
python_requires=">=3.8", python_requires=">=3.8",
install_requires=["python-telegram==0.12.0"], install_requires=["python-telegram==0.14.0"],
) )