11[tool .poetry ]
22name = " tstickers"
3- version = " 2022.1"
3+ version = " 2022.1.1 "
44license = " mit"
55description = " Download sticker packs from Telegram"
66authors = [" FredHappyface" ]
@@ -13,7 +13,7 @@ classifiers = [
1313 " Programming Language :: Python :: Implementation :: CPython" ,
1414 " Topic :: Software Development :: Libraries :: Python Modules" ,
1515 " Topic :: Utilities" ,
16- " Topic :: Multimedia :: Graphics"
16+ " Topic :: Multimedia :: Graphics" ,
1717]
1818homepage = " https://github.com/FHPythonUtils/TStickers"
1919repository = " https://github.com/FHPythonUtils/TStickers"
@@ -22,11 +22,11 @@ readme = "README.md"
2222
2323[tool .poetry .dependencies ]
2424python = " >=3.8,<4.0"
25- requests = " <3,>=2.27.1 "
26- Pillow = " <10,>=9.0 .0"
27- emoji = " <2,>=1.6.3 "
28- pyrlottie = " <2024,>= 2022"
29- requests-cache = " <2,>=0.9 .1"
25+ requests = " ^2.31.0 "
26+ Pillow = " ^9.5 .0"
27+ emoji = " ^2.5.1 "
28+ pyrlottie = " ^ 2022.0.2 "
29+ requests-cache = " ^1.0 .1"
3030
3131[tool .poetry .scripts ]
3232tstickers = " tstickers:cli"
@@ -37,6 +37,18 @@ pylint = "^2.13.5"
3737handsdown = " ^1.1.0"
3838coverage = " ^6.3.2"
3939
40+ [tool .black ]
41+ line-length = 100
42+ target-version = [" py38" ]
43+
44+ [tool .isort ]
45+ profile = " black"
46+ indent = " Tab"
47+
48+ [tool .pydocstyle ]
49+ convention = " google"
50+ ignore = " D205,D415"
51+
4052[build-system ]
4153requires = [" poetry-core" ]
4254build-backend = " poetry.core.masonry.api"
@@ -56,20 +68,18 @@ ignore-paths = ["tests"]
5668
5769[tool .pylint .messages_control ]
5870enable = [" F" , " E" , " W" , " R" , " C" ]
59- disable = [
60- " pointless-string-statement" ,
61- " superfluous-parens" ,
62- " bad-continuation"
63- ]
71+ disable = [" pointless-string-statement" , " superfluous-parens" ]
6472
65- [tool .black ]
66- line-length = 100
67- target-version = [" py37" ]
68-
69- [tool .isort ]
70- profile = " black"
71- indent = " Tab"
73+ [tool .tox ]
74+ legacy_tox_ini = """
75+ [tox]
76+ env_list =
77+ py311
78+ py310
79+ py39
80+ py38
7281
73- [tool .pydocstyle ]
74- convention = " google"
75- ignore = " D205,D415"
82+ [testenv]
83+ deps = pytest
84+ commands = pytest tests
85+ """
0 commit comments