python-tty 0.1.5__tar.gz → 0.1.6__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 (76) hide show
  1. {python_tty-0.1.5/src/python_tty.egg-info → python_tty-0.1.6}/PKG-INFO +1 -1
  2. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/mixins.py +1 -1
  3. {python_tty-0.1.5 → python_tty-0.1.6/src/python_tty.egg-info}/PKG-INFO +1 -1
  4. {python_tty-0.1.5 → python_tty-0.1.6}/.github/workflows/python-publish.yml +0 -0
  5. {python_tty-0.1.5 → python_tty-0.1.6}/.gitignore +0 -0
  6. {python_tty-0.1.5 → python_tty-0.1.6}/LICENSE +0 -0
  7. {python_tty-0.1.5 → python_tty-0.1.6}/MANIFEST.in +0 -0
  8. {python_tty-0.1.5 → python_tty-0.1.6}/NOTICE +0 -0
  9. {python_tty-0.1.5 → python_tty-0.1.6}/README.md +0 -0
  10. {python_tty-0.1.5 → python_tty-0.1.6}/README_zh.md +0 -0
  11. {python_tty-0.1.5 → python_tty-0.1.6}/demos/__init__.py +0 -0
  12. {python_tty-0.1.5 → python_tty-0.1.6}/demos/chat_room/__init__.py +0 -0
  13. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/__init__.py +0 -0
  14. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/commands/__init__.py +0 -0
  15. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/commands/root_commands.py +0 -0
  16. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/consoles/__init__.py +0 -0
  17. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/consoles/root.py +0 -0
  18. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/core/__init__.py +0 -0
  19. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/core/file_manager.py +0 -0
  20. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/exceptions/__init__.py +0 -0
  21. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/exceptions/console_exception.py +0 -0
  22. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/main.py +0 -0
  23. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/setup.py +0 -0
  24. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/utils/__init__.py +0 -0
  25. {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/utils/table.py +0 -0
  26. {python_tty-0.1.5 → python_tty-0.1.6}/docs/LOG.md +0 -0
  27. {python_tty-0.1.5 → python_tty-0.1.6}/docs/context.md +0 -0
  28. {python_tty-0.1.5 → python_tty-0.1.6}/pyproject.toml +0 -0
  29. {python_tty-0.1.5 → python_tty-0.1.6}/requirements.txt +0 -0
  30. {python_tty-0.1.5 → python_tty-0.1.6}/setup.cfg +0 -0
  31. {python_tty-0.1.5 → python_tty-0.1.6}/setup.py +0 -0
  32. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/__init__.py +0 -0
  33. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/audit/__init__.py +0 -0
  34. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/audit/sink.py +0 -0
  35. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/audit/ui_logger.py +0 -0
  36. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/__init__.py +0 -0
  37. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/core.py +0 -0
  38. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/decorators.py +0 -0
  39. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/examples/__init__.py +0 -0
  40. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/examples/root_commands.py +0 -0
  41. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/examples/sub_commands.py +0 -0
  42. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/general.py +0 -0
  43. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/registry.py +0 -0
  44. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/config/__init__.py +0 -0
  45. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/config/config.py +0 -0
  46. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/console_factory.py +0 -0
  47. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/__init__.py +0 -0
  48. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/core.py +0 -0
  49. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/decorators.py +0 -0
  50. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/examples/__init__.py +0 -0
  51. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/examples/root_console.py +0 -0
  52. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/examples/sub_console.py +0 -0
  53. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/loader.py +0 -0
  54. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/manager.py +0 -0
  55. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/registry.py +0 -0
  56. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/exceptions/__init__.py +0 -0
  57. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/exceptions/console_exception.py +0 -0
  58. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/executor/__init__.py +0 -0
  59. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/executor/executor.py +0 -0
  60. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/executor/models.py +0 -0
  61. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/frontends/__init__.py +0 -0
  62. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/frontends/rpc/__init__.py +0 -0
  63. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/frontends/web/__init__.py +0 -0
  64. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/meta/__init__.py +0 -0
  65. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/runtime/__init__.py +0 -0
  66. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/runtime/events.py +0 -0
  67. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/runtime/provider.py +0 -0
  68. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/runtime/router.py +0 -0
  69. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/utils/__init__.py +0 -0
  70. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/utils/table.py +0 -0
  71. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/utils/tokenize.py +0 -0
  72. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty.egg-info/SOURCES.txt +0 -0
  73. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty.egg-info/dependency_links.txt +0 -0
  74. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty.egg-info/requires.txt +0 -0
  75. {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty.egg-info/top_level.txt +0 -0
  76. {python_tty-0.1.5 → python_tty-0.1.6}/tests/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-tty
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: A multi-console TTY framework for complex CLI/TTY apps
5
5
  Home-page: https://github.com/ROOKIEMIE/python-tty
6
6
  Author: ROOKIEMIE
@@ -34,7 +34,7 @@ class HelpMixin(CommandMixin):
34
34
  for cls in self.__class__.mro():
35
35
  if cls is CommandMixin:
36
36
  continue
37
- if issubclass(cls, CommandMixin):
37
+ if issubclass(cls, CommandMixin) and not issubclass(cls, BaseCommands):
38
38
  base_commands_funcs.extend([member[1] for member in inspect.getmembers(cls, inspect.isfunction)])
39
39
  for name, func in self.command_funcs.items():
40
40
  row = [name, func.info.func_description]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-tty
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: A multi-console TTY framework for complex CLI/TTY apps
5
5
  Home-page: https://github.com/ROOKIEMIE/python-tty
6
6
  Author: ROOKIEMIE
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes