CustomModules 3.1.0__tar.gz → 3.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/__init__.py +1 -1
  2. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules.egg-info/PKG-INFO +3 -1
  3. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules.egg-info/requires.txt +2 -0
  4. {custommodules-3.1.0 → custommodules-3.1.1}/PKG-INFO +3 -1
  5. {custommodules-3.1.0 → custommodules-3.1.1}/pyproject.toml +1 -1
  6. {custommodules-3.1.0 → custommodules-3.1.1}/setup.py +2 -1
  7. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/app_translation.py +0 -0
  8. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/bitmap_handler.py +0 -0
  9. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/bot_directory.py +0 -0
  10. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/database_handler.py +0 -0
  11. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/googletrans.py +0 -0
  12. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/invite_tracker.py +0 -0
  13. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/killswitch.py +0 -0
  14. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/libretrans.py +0 -0
  15. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/log_handler.py +0 -0
  16. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/patchnotes.py +0 -0
  17. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/private_voice.py +0 -0
  18. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/py.typed +0 -0
  19. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/random_usernames.py +0 -0
  20. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/stat_dock.py +0 -0
  21. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/steam.py +0 -0
  22. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/steam_charts.py +0 -0
  23. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules/twitch.py +0 -0
  24. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules.egg-info/SOURCES.txt +0 -0
  25. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules.egg-info/dependency_links.txt +0 -0
  26. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules.egg-info/not-zip-safe +0 -0
  27. {custommodules-3.1.0 → custommodules-3.1.1}/CustomModules.egg-info/top_level.txt +0 -0
  28. {custommodules-3.1.0 → custommodules-3.1.1}/LICENSE.txt +0 -0
  29. {custommodules-3.1.0 → custommodules-3.1.1}/MANIFEST.in +0 -0
  30. {custommodules-3.1.0 → custommodules-3.1.1}/README.md +0 -0
  31. {custommodules-3.1.0 → custommodules-3.1.1}/setup.cfg +0 -0
@@ -20,7 +20,7 @@ Available modules:
20
20
  - twitch: Twitch API integration
21
21
  """
22
22
 
23
- __version__ = "3.1.0"
23
+ __version__ = "3.1.1"
24
24
  __author__ = "Serpensin"
25
25
  __license__ = "AGPL-3.0"
26
26
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: CustomModules
3
- Version: 3.1.0
3
+ Version: 3.1.1
4
4
  Summary: A collection of custom Python modules for Discord bots and utilities
5
5
  Home-page: https://github.com/Serpensin/CustomModules-Python
6
6
  Author: Serpensin
@@ -43,6 +43,7 @@ Requires-Dist: html2text>=2024.2.26; extra == "killswitch"
43
43
  Requires-Dist: beautifulsoup4>=4.12.3; extra == "killswitch"
44
44
  Provides-Extra: libretrans
45
45
  Requires-Dist: aiohttp>=3.9.3; extra == "libretrans"
46
+ Requires-Dist: aiofiles>=25.1.0; extra == "libretrans"
46
47
  Provides-Extra: loghandler
47
48
  Requires-Dist: colorama>=0.4.6; extra == "loghandler"
48
49
  Provides-Extra: patchnotes
@@ -65,6 +66,7 @@ Provides-Extra: twitch
65
66
  Requires-Dist: aiohttp>=3.9.3; extra == "twitch"
66
67
  Requires-Dist: requests>=2.31.0; extra == "twitch"
67
68
  Provides-Extra: all
69
+ Requires-Dist: aiofiles>=25.1.0; extra == "all"
68
70
  Requires-Dist: aiohttp>=3.9.3; extra == "all"
69
71
  Requires-Dist: aiomysql>=0.2.0; extra == "all"
70
72
  Requires-Dist: aiosqlite>=0.19.0; extra == "all"
@@ -1,5 +1,6 @@
1
1
 
2
2
  [all]
3
+ aiofiles>=25.1.0
3
4
  aiohttp>=3.9.3
4
5
  aiomysql>=0.2.0
5
6
  aiosqlite>=0.19.0
@@ -42,6 +43,7 @@ beautifulsoup4>=4.12.3
42
43
 
43
44
  [libretrans]
44
45
  aiohttp>=3.9.3
46
+ aiofiles>=25.1.0
45
47
 
46
48
  [loghandler]
47
49
  colorama>=0.4.6
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: CustomModules
3
- Version: 3.1.0
3
+ Version: 3.1.1
4
4
  Summary: A collection of custom Python modules for Discord bots and utilities
5
5
  Home-page: https://github.com/Serpensin/CustomModules-Python
6
6
  Author: Serpensin
@@ -43,6 +43,7 @@ Requires-Dist: html2text>=2024.2.26; extra == "killswitch"
43
43
  Requires-Dist: beautifulsoup4>=4.12.3; extra == "killswitch"
44
44
  Provides-Extra: libretrans
45
45
  Requires-Dist: aiohttp>=3.9.3; extra == "libretrans"
46
+ Requires-Dist: aiofiles>=25.1.0; extra == "libretrans"
46
47
  Provides-Extra: loghandler
47
48
  Requires-Dist: colorama>=0.4.6; extra == "loghandler"
48
49
  Provides-Extra: patchnotes
@@ -65,6 +66,7 @@ Provides-Extra: twitch
65
66
  Requires-Dist: aiohttp>=3.9.3; extra == "twitch"
66
67
  Requires-Dist: requests>=2.31.0; extra == "twitch"
67
68
  Provides-Extra: all
69
+ Requires-Dist: aiofiles>=25.1.0; extra == "all"
68
70
  Requires-Dist: aiohttp>=3.9.3; extra == "all"
69
71
  Requires-Dist: aiomysql>=0.2.0; extra == "all"
70
72
  Requires-Dist: aiosqlite>=0.19.0; extra == "all"
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "CustomModules"
7
- version = "3.1.0"
7
+ version = "3.1.1"
8
8
  authors = [
9
9
  {name = "Serpensin"},
10
10
  ]
@@ -49,6 +49,7 @@ extras_require = {
49
49
  ],
50
50
  "libretrans": [
51
51
  DEP_AIOHTTP,
52
+ "aiofiles>=25.1.0",
52
53
  ],
53
54
  "loghandler": [
54
55
  "colorama>=0.4.6",
@@ -89,7 +90,7 @@ extras_require["all"] = sorted(all_deps)
89
90
 
90
91
  setup(
91
92
  name="CustomModules",
92
- version="3.1.0",
93
+ version="3.1.1",
93
94
  author="Serpensin",
94
95
  description="A collection of custom Python modules for Discord bots and utilities",
95
96
  long_description=read_file("README.md"),
File without changes
File without changes
File without changes
File without changes