mirror of
https://github.com/paul-nameless/tg
synced 2024-11-21 19:33:09 +00:00
Bump python-telegram version (#213)
This commit is contained in:
parent
0b28232bb0
commit
20273fd068
2 changed files with 5 additions and 4 deletions
|
@ -8,9 +8,10 @@ home-page = 'https://github.com/paul-nameless/tg'
|
|||
classifiers = [
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
]
|
||||
requires-python = ">=3.8"
|
||||
requires = ['python-telegram==0.12.0']
|
||||
requires = ['python-telegram==0.14.0']
|
||||
|
||||
[tool.flit.scripts]
|
||||
tg = "tg.__main__:main"
|
||||
|
|
6
setup.py
6
setup.py
|
@ -1,6 +1,5 @@
|
|||
from setuptools import setup
|
||||
|
||||
import tg
|
||||
from setuptools import setup
|
||||
|
||||
with open("readme.md", "r") as fh:
|
||||
readme = fh.read()
|
||||
|
@ -18,9 +17,10 @@ setup(
|
|||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
],
|
||||
packages=["tg"],
|
||||
entry_points={"console_scripts": ["tg = tg.__main__:main"]},
|
||||
python_requires=">=3.8",
|
||||
install_requires=["python-telegram==0.12.0"],
|
||||
install_requires=["python-telegram==0.14.0"],
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue