1
1
[tool .poetry ]
2
2
name = " tstickers"
3
- version = " 2022.1"
3
+ version = " 2022.1.1 "
4
4
license = " mit"
5
5
description = " Download sticker packs from Telegram"
6
6
authors = [" FredHappyface" ]
@@ -13,7 +13,7 @@ classifiers = [
13
13
" Programming Language :: Python :: Implementation :: CPython" ,
14
14
" Topic :: Software Development :: Libraries :: Python Modules" ,
15
15
" Topic :: Utilities" ,
16
- " Topic :: Multimedia :: Graphics"
16
+ " Topic :: Multimedia :: Graphics" ,
17
17
]
18
18
homepage = " https://github.com/FHPythonUtils/TStickers"
19
19
repository = " https://github.com/FHPythonUtils/TStickers"
@@ -22,11 +22,11 @@ readme = "README.md"
22
22
23
23
[tool .poetry .dependencies ]
24
24
python = " >=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"
30
30
31
31
[tool .poetry .scripts ]
32
32
tstickers = " tstickers:cli"
@@ -37,6 +37,18 @@ pylint = "^2.13.5"
37
37
handsdown = " ^1.1.0"
38
38
coverage = " ^6.3.2"
39
39
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
+
40
52
[build-system ]
41
53
requires = [" poetry-core" ]
42
54
build-backend = " poetry.core.masonry.api"
@@ -56,20 +68,18 @@ ignore-paths = ["tests"]
56
68
57
69
[tool .pylint .messages_control ]
58
70
enable = [" 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" ]
64
72
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
72
81
73
- [tool .pydocstyle ]
74
- convention = " google"
75
- ignore = " D205,D415"
82
+ [testenv]
83
+ deps = pytest
84
+ commands = pytest tests
85
+ """
0 commit comments