thread-order 1.2.2__tar.gz → 1.2.4__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 (24) hide show
  1. {thread_order-1.2.2/thread_order.egg-info → thread_order-1.2.4}/PKG-INFO +1 -1
  2. {thread_order-1.2.2 → thread_order-1.2.4}/pyproject.toml +1 -1
  3. {thread_order-1.2.2 → thread_order-1.2.4}/thread_order/__init__.py +1 -1
  4. thread_order-1.2.4/thread_order/ui/__init__.py +0 -0
  5. {thread_order-1.2.2 → thread_order-1.2.4}/thread_order/ui/app.py +1 -1
  6. {thread_order-1.2.2 → thread_order-1.2.4/thread_order.egg-info}/PKG-INFO +1 -1
  7. {thread_order-1.2.2 → thread_order-1.2.4}/thread_order.egg-info/SOURCES.txt +2 -1
  8. {thread_order-1.2.2 → thread_order-1.2.4}/thread_order.egg-info/entry_points.txt +1 -1
  9. {thread_order-1.2.2 → thread_order-1.2.4}/LICENSE +0 -0
  10. {thread_order-1.2.2 → thread_order-1.2.4}/README.md +0 -0
  11. {thread_order-1.2.2 → thread_order-1.2.4}/setup.cfg +0 -0
  12. {thread_order-1.2.2 → thread_order-1.2.4}/tests/test_graph.py +0 -0
  13. {thread_order-1.2.2 → thread_order-1.2.4}/tests/test_init.py +0 -0
  14. {thread_order-1.2.2 → thread_order-1.2.4}/tests/test_scheduler.py +0 -0
  15. {thread_order-1.2.2/thread_order/ui → thread_order-1.2.4/thread_order/cli}/__init__.py +0 -0
  16. /thread_order-1.2.2/thread_order/runner.py → /thread_order-1.2.4/thread_order/cli/app.py +0 -0
  17. {thread_order-1.2.2 → thread_order-1.2.4}/thread_order/graph.py +0 -0
  18. {thread_order-1.2.2 → thread_order-1.2.4}/thread_order/graph_summary.py +0 -0
  19. {thread_order-1.2.2 → thread_order-1.2.4}/thread_order/logger.py +0 -0
  20. {thread_order-1.2.2 → thread_order-1.2.4}/thread_order/scheduler.py +0 -0
  21. {thread_order-1.2.2 → thread_order-1.2.4}/thread_order/timer.py +0 -0
  22. {thread_order-1.2.2 → thread_order-1.2.4}/thread_order.egg-info/dependency_links.txt +0 -0
  23. {thread_order-1.2.2 → thread_order-1.2.4}/thread_order.egg-info/requires.txt +0 -0
  24. {thread_order-1.2.2 → thread_order-1.2.4}/thread_order.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: thread-order
3
- Version: 1.2.2
3
+ Version: 1.2.4
4
4
  Summary: A lightweight framework for running functions concurrently across multiple threads while maintaining a defined execution order.
5
5
  Author-email: Emilio Reyes <soda480@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -42,7 +42,7 @@ include = ["thread_order*"]
42
42
  "Homepage" = "https://github.com/soda480/thread-order"
43
43
 
44
44
  [project.scripts]
45
- tdrun = "thread_order.runner:main"
45
+ tdrun = "thread_order.cli.app:main"
46
46
  tdrun-ui = "thread_order.ui.app:main"
47
47
 
48
48
  [project.optional-dependencies]
@@ -53,7 +53,7 @@ def __getattr__(name):
53
53
  try:
54
54
  __version__ = _metadata.version(__name__)
55
55
  except _metadata.PackageNotFoundError:
56
- __version__ = '1.2.2'
56
+ __version__ = '1.2.4'
57
57
 
58
58
  if getenv('DEV'):
59
59
  __version__ = f'{__version__}+dev'
File without changes
@@ -610,7 +610,7 @@ class Runner(tb.Frame):
610
610
  title="About tdrun-ui",
611
611
  message=(
612
612
  "tdrun-ui\n"
613
- "Windows UI for thread-order\n"
613
+ "GUI for thread-order:\n"
614
614
  "A lightweight framework for running functions concurrently across multiple "
615
615
  " threads while maintaining a defined execution order.\n\n"
616
616
  "Author: Emilio Reyes\n"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: thread-order
3
- Version: 1.2.2
3
+ Version: 1.2.4
4
4
  Summary: A lightweight framework for running functions concurrently across multiple threads while maintaining a defined execution order.
5
5
  Author-email: Emilio Reyes <soda480@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -8,7 +8,6 @@ thread_order/__init__.py
8
8
  thread_order/graph.py
9
9
  thread_order/graph_summary.py
10
10
  thread_order/logger.py
11
- thread_order/runner.py
12
11
  thread_order/scheduler.py
13
12
  thread_order/timer.py
14
13
  thread_order.egg-info/PKG-INFO
@@ -17,5 +16,7 @@ thread_order.egg-info/dependency_links.txt
17
16
  thread_order.egg-info/entry_points.txt
18
17
  thread_order.egg-info/requires.txt
19
18
  thread_order.egg-info/top_level.txt
19
+ thread_order/cli/__init__.py
20
+ thread_order/cli/app.py
20
21
  thread_order/ui/__init__.py
21
22
  thread_order/ui/app.py
@@ -1,3 +1,3 @@
1
1
  [console_scripts]
2
- tdrun = thread_order.runner:main
2
+ tdrun = thread_order.cli.app:main
3
3
  tdrun-ui = thread_order.ui.app:main
File without changes
File without changes
File without changes