backlogops-gui 0.2__tar.gz → 0.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 (53) hide show
  1. {backlogops_gui-0.2/backlogops_gui.egg-info → backlogops_gui-0.4}/PKG-INFO +84 -20
  2. backlogops_gui-0.2/PKG-INFO → backlogops_gui-0.4/README_pypi.md +75 -43
  3. backlogops_gui-0.2/README_pypi.md → backlogops_gui-0.4/backlogops_gui.egg-info/PKG-INFO +107 -12
  4. backlogops_gui-0.4/backlogops_gui.egg-info/SOURCES.txt +47 -0
  5. backlogops_gui-0.4/backlogops_gui.egg-info/requires.txt +3 -0
  6. {backlogops_gui-0.2 → backlogops_gui-0.4}/pyproject.toml +7 -7
  7. {backlogops_gui-0.2 → backlogops_gui-0.4}/setup.py +4 -4
  8. {backlogops_gui-0.2 → backlogops_gui-0.4}/src/backlogops_gui/application.py +315 -43
  9. backlogops_gui-0.4/src/backlogops_gui/auto_scroll.py +37 -0
  10. backlogops_gui-0.2/src/backlogops_gui/backlog_window.py → backlogops_gui-0.4/src/backlogops_gui/backlog_actions.py +51 -201
  11. backlogops_gui-0.4/src/backlogops_gui/backlog_dialogs.py +362 -0
  12. backlogops_gui-0.4/src/backlogops_gui/backlog_window.py +596 -0
  13. backlogops_gui-0.4/src/backlogops_gui/choice_dialogs.py +132 -0
  14. backlogops_gui-0.4/src/backlogops_gui/close_binding.py +47 -0
  15. backlogops_gui-0.4/src/backlogops_gui/file_choosers.py +74 -0
  16. backlogops_gui-0.4/src/backlogops_gui/format_dialogs.py +145 -0
  17. backlogops_gui-0.4/src/backlogops_gui/gui_wizard.py +133 -0
  18. backlogops_gui-0.4/src/backlogops_gui/jira_actions.py +38 -0
  19. backlogops_gui-0.4/src/backlogops_gui/jira_base.py +132 -0
  20. backlogops_gui-0.4/src/backlogops_gui/jira_dialogs.py +785 -0
  21. backlogops_gui-0.4/src/backlogops_gui/jira_order.py +69 -0
  22. backlogops_gui-0.4/src/backlogops_gui/jira_rank.py +63 -0
  23. backlogops_gui-0.4/src/backlogops_gui/jira_read.py +108 -0
  24. backlogops_gui-0.4/src/backlogops_gui/jira_rename.py +60 -0
  25. backlogops_gui-0.4/src/backlogops_gui/jira_update.py +120 -0
  26. backlogops_gui-0.4/src/backlogops_gui/jira_write.py +107 -0
  27. backlogops_gui-0.4/src/backlogops_gui/modal_dialog.py +56 -0
  28. backlogops_gui-0.4/src/backlogops_gui/report_windows.py +61 -0
  29. backlogops_gui-0.4/src/backlogops_gui/token_dialog.py +143 -0
  30. backlogops_gui-0.4/src/backlogops_gui/wizard_form.py +486 -0
  31. backlogops_gui-0.4/src/backlogops_gui/wizard_path.py +166 -0
  32. backlogops_gui-0.4/src/backlogops_gui/wizard_table.py +259 -0
  33. backlogops_gui-0.4/src/backlogops_gui/wizard_window.py +364 -0
  34. backlogops_gui-0.2/backlogops_gui.egg-info/SOURCES.txt +0 -25
  35. backlogops_gui-0.2/backlogops_gui.egg-info/requires.txt +0 -3
  36. backlogops_gui-0.2/src/backlogops_gui/gui_wizard.py +0 -563
  37. backlogops_gui-0.2/src/backlogops_gui/io_dialogs.py +0 -722
  38. {backlogops_gui-0.2 → backlogops_gui-0.4}/LICENSE.txt +0 -0
  39. {backlogops_gui-0.2 → backlogops_gui-0.4}/backlogops_gui.egg-info/dependency_links.txt +0 -0
  40. {backlogops_gui-0.2 → backlogops_gui-0.4}/backlogops_gui.egg-info/entry_points.txt +0 -0
  41. {backlogops_gui-0.2 → backlogops_gui-0.4}/backlogops_gui.egg-info/top_level.txt +0 -0
  42. {backlogops_gui-0.2 → backlogops_gui-0.4}/setup.cfg +0 -0
  43. {backlogops_gui-0.2 → backlogops_gui-0.4}/src/backlogops_gui/__init__.py +0 -0
  44. {backlogops_gui-0.2 → backlogops_gui-0.4}/src/backlogops_gui/__main__.py +0 -0
  45. {backlogops_gui-0.2 → backlogops_gui-0.4}/src/backlogops_gui/_migrate_warn.py +0 -0
  46. {backlogops_gui-0.2 → backlogops_gui-0.4}/src/backlogops_gui/backlog_io.py +0 -0
  47. {backlogops_gui-0.2 → backlogops_gui-0.4}/src/backlogops_gui/blog_version_reporter.py +0 -0
  48. {backlogops_gui-0.2 → backlogops_gui-0.4}/src/backlogops_gui/gui_style.py +0 -0
  49. {backlogops_gui-0.2 → backlogops_gui-0.4}/src/backlogops_gui/log_buffer.py +0 -0
  50. {backlogops_gui-0.2 → backlogops_gui-0.4}/src/backlogops_gui/py.typed +0 -0
  51. {backlogops_gui-0.2 → backlogops_gui-0.4}/src/backlogops_gui/python_version.py +0 -0
  52. {backlogops_gui-0.2 → backlogops_gui-0.4}/src/backlogops_gui/table_view.py +0 -0
  53. {backlogops_gui-0.2 → backlogops_gui-0.4}/src/backlogops_gui/tcltk_version.py +0 -0
@@ -1,29 +1,30 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: backlogops-gui
3
- Version: 0.2
3
+ Version: 0.4
4
4
  Summary: Graphical user interface for backlog operations.
5
5
  Author: Tom Björkholm
6
6
  Author-email: Tom Björkholm <klausuler_linnet0q@icloud.com>
7
7
  License-Expression: MIT
8
- Project-URL: Homepage, https://bitbucket.org/tom-bjorkholm/backlog-ops
9
- Project-URL: Source code, https://bitbucket.org/tom-bjorkholm/backlog-ops
10
- Project-URL: Documentation, https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/
8
+ Project-URL: Homepage, https://github.com/tom-bjorkholm/backlog-ops
9
+ Project-URL: Source code, https://github.com/tom-bjorkholm/backlog-ops
10
+ Project-URL: Documentation, https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/using_backlogops/README.md
11
11
  Keywords: backlog,release planning,agile,scrum,scheduling,roadmap,project management,product owner,product management
12
12
  Classifier: Programming Language :: Python :: 3
13
13
  Classifier: Programming Language :: Python :: 3.12
14
14
  Classifier: Programming Language :: Python :: 3.13
15
15
  Classifier: Programming Language :: Python :: 3.14
16
16
  Classifier: Operating System :: OS Independent
17
- Classifier: Development Status :: 3 - Alpha
17
+ Classifier: Development Status :: 4 - Beta
18
18
  Classifier: Intended Audience :: End Users/Desktop
19
19
  Classifier: Intended Audience :: Information Technology
20
20
  Classifier: Topic :: Office/Business :: Scheduling
21
+ Classifier: Typing :: Typed
21
22
  Requires-Python: >=3.12
22
23
  Description-Content-Type: text/markdown
23
24
  License-File: LICENSE.txt
24
- Requires-Dist: backlogops>=0.2
25
- Requires-Dist: argcomplete>=3.6.3
26
- Requires-Dist: versionreporter>=0.3
25
+ Requires-Dist: backlogops>=0.4
26
+ Requires-Dist: argcomplete>=3.7.0
27
+ Requires-Dist: versionreporter>=0.4
27
28
  Dynamic: author
28
29
  Dynamic: license-file
29
30
  Dynamic: requires-dist
@@ -45,6 +46,18 @@ There are 3 related packages for backlog operations:
45
46
  interface to use the functions in the library. It is based on TkInter. The
46
47
  ambition is to keep it as a thin wrapper around the library.
47
48
 
49
+ ## Project status
50
+
51
+ backlogops is in beta. The algorithms intended for its initial scope are in
52
+ place, so the main work from here is on the user experience rather than on new
53
+ core functionality. The three packages share a version number and are released
54
+ together.
55
+
56
+ The library is not meant to ever be "finished": using it for real planning keeps
57
+ surfacing new ideas. Some of those will be added to backlogops itself, and
58
+ others will fit better in separate packages built on top of backlogops. Early
59
+ adopters are very welcome, and their feedback shapes what comes next.
60
+
48
61
  ## Available functionality
49
62
 
50
63
  The following functionality is available in all 3 packages:
@@ -100,6 +113,23 @@ The following functionality is available in all 3 packages:
100
113
  - A wizard to create a backlog-ops configuration file with the workforce, named
101
114
  input and output presets, level names, and status name mapping.
102
115
 
116
+ - Read a backlog and releases from Jira into a backlog and release table.
117
+
118
+ - Write a backlog to Jira, creating a new Jira issue for each backlog item.
119
+
120
+ - Update a backlog that is already in Jira, changing only the chosen columns.
121
+
122
+ - Add the releases to Jira as Jira versions.
123
+
124
+ - Update the releases in Jira, setting their dates to the planned release dates.
125
+
126
+ - Order the releases in Jira by date, by a name list, or by the input order.
127
+
128
+ - Rename releases in Jira, changing the Jira version names.
129
+
130
+ - Move backlog items to a chosen anchor in the Jira rank order, following a key
131
+ list.
132
+
103
133
  ## The operating model
104
134
 
105
135
  The operating model that most of the functionality is designed for is that the
@@ -135,8 +165,9 @@ the library:
135
165
  before the parent item starts, and the parent item cannot finish before all
136
166
  its children have finished.
137
167
 
138
- - `release` The release of the backlog item. Optional. Follows the same
139
- character rules as the key. Must not be empty string.
168
+ - `release` The release of the backlog item. Optional. Must not be empty string,
169
+ must not start or end with whitespace, and must not contain tabs, newlines or
170
+ control characters.
140
171
 
141
172
  - `team` The team responsible for the backlog item. Optional. Must not be empty
142
173
  string. Must be a valid team name. If None the item can be done by any team.
@@ -176,21 +207,27 @@ To install backlogops-gui on Microsoft Windows, run the following command:
176
207
  pip install --upgrade backlogops-gui
177
208
  ````
178
209
 
210
+ ## Using backlogops documentation
211
+
212
+ For a better understanding of how to use the library, CLI or GUI, see the user
213
+ documentation:
214
+ [Using backlogops](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc//using_backlogops/README.md)
215
+
179
216
  ## API documentation
180
217
 
181
218
  For more detailed code documentation, see the API documentation:
182
219
 
183
- - [Library public API](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_api.md)
220
+ - [Library public API](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_api.md)
184
221
 
185
- - [Library protected API](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_api.md)
222
+ - [Library protected API](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_api.md)
186
223
 
187
- - [Library public CLI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_cli.md)
224
+ - [Public CLI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_cli.md)
188
225
 
189
- - [Library protected CLI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_cli.md)
226
+ - [Protected CLI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_cli.md)
190
227
 
191
- - [Library public GUI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_gui.md)
228
+ - [Public GUI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_gui.md)
192
229
 
193
- - [Library protected GUI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_gui.md)
230
+ - [Protected GUI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_gui.md)
194
231
 
195
232
  ## Graphical user interface for backlog manipulation
196
233
 
@@ -229,8 +266,12 @@ is in the menus.
229
266
 
230
267
  - File
231
268
 
232
- - Read backlog...: Read in a file with a backlog and list of releases.
233
- A new backlog window will be opened with the read in backlog.
269
+ - Read backlog from file...: Read in a file with a backlog and list
270
+ of releases. A new backlog window will be opened with the read in
271
+ backlog.
272
+
273
+ - Read backlog from Jira...: Read a backlog and list of releases from
274
+ Jira. A new backlog window will be opened with the read in backlog.
234
275
 
235
276
  - New demo backlog: Create a demo backlog with some backlog items and
236
277
  releases. A new backlog window will be opened with the demo backlog.
@@ -239,6 +280,9 @@ is in the menus.
239
280
 
240
281
  - Configuration
241
282
 
283
+ - Load configuration file...: Load a configuration file, replacing the
284
+ configuration currently active in the application.
285
+
242
286
  - Run configuration wizard...: this lets you configure the teams that work on
243
287
  the backlog and also other aspects like the dates the company is
244
288
  closed for vacation, and preset configuration for the inputs or
@@ -253,6 +297,10 @@ is in the menus.
253
297
  - Write configuration...: This lets you write the configuration you
254
298
  have in application to a file.
255
299
 
300
+ - Encrypt Jira API token file...: Encrypt a Jira API token to a
301
+ pass-phrase-protected file, for use with the ENCRYPTED_FILE token
302
+ storage mode.
303
+
256
304
  - Help
257
305
 
258
306
  - Report version information: Show version information for the
@@ -287,11 +335,27 @@ one with the list of releases. You will want to use the menus.
287
335
 
288
336
  - Close
289
337
 
338
+ - Jira
339
+
340
+ - Add backlog to Jira...
341
+
342
+ - Update backlog in Jira...
343
+
344
+ - Add releases to Jira...
345
+
346
+ - Update releases in Jira...
347
+
348
+ - Order releases in Jira...
349
+
350
+ - Rename releases in Jira...
351
+
352
+ - Rank items in Jira...
353
+
290
354
  ## Test summary
291
355
 
292
- - Test result: 1545 passed in 32s
356
+ - Test result: 2638 passed, 7 deselected in 51s
293
357
  - No flake8 warnings.
294
358
  - No mypy errors found.
295
359
  - No python layout warnings.
296
- - Built version(s): 0.2
360
+ - Built version(s): 0.4
297
361
  - Build and test using Python 3.14.6
@@ -1,34 +1,3 @@
1
- Metadata-Version: 2.4
2
- Name: backlogops-gui
3
- Version: 0.2
4
- Summary: Graphical user interface for backlog operations.
5
- Author: Tom Björkholm
6
- Author-email: Tom Björkholm <klausuler_linnet0q@icloud.com>
7
- License-Expression: MIT
8
- Project-URL: Homepage, https://bitbucket.org/tom-bjorkholm/backlog-ops
9
- Project-URL: Source code, https://bitbucket.org/tom-bjorkholm/backlog-ops
10
- Project-URL: Documentation, https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/
11
- Keywords: backlog,release planning,agile,scrum,scheduling,roadmap,project management,product owner,product management
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.12
14
- Classifier: Programming Language :: Python :: 3.13
15
- Classifier: Programming Language :: Python :: 3.14
16
- Classifier: Operating System :: OS Independent
17
- Classifier: Development Status :: 3 - Alpha
18
- Classifier: Intended Audience :: End Users/Desktop
19
- Classifier: Intended Audience :: Information Technology
20
- Classifier: Topic :: Office/Business :: Scheduling
21
- Requires-Python: >=3.12
22
- Description-Content-Type: text/markdown
23
- License-File: LICENSE.txt
24
- Requires-Dist: backlogops>=0.2
25
- Requires-Dist: argcomplete>=3.6.3
26
- Requires-Dist: versionreporter>=0.3
27
- Dynamic: author
28
- Dynamic: license-file
29
- Dynamic: requires-dist
30
- Dynamic: requires-python
31
-
32
1
  # backlogops-gui
33
2
 
34
3
  There are 3 related packages for backlog operations:
@@ -45,6 +14,18 @@ There are 3 related packages for backlog operations:
45
14
  interface to use the functions in the library. It is based on TkInter. The
46
15
  ambition is to keep it as a thin wrapper around the library.
47
16
 
17
+ ## Project status
18
+
19
+ backlogops is in beta. The algorithms intended for its initial scope are in
20
+ place, so the main work from here is on the user experience rather than on new
21
+ core functionality. The three packages share a version number and are released
22
+ together.
23
+
24
+ The library is not meant to ever be "finished": using it for real planning keeps
25
+ surfacing new ideas. Some of those will be added to backlogops itself, and
26
+ others will fit better in separate packages built on top of backlogops. Early
27
+ adopters are very welcome, and their feedback shapes what comes next.
28
+
48
29
  ## Available functionality
49
30
 
50
31
  The following functionality is available in all 3 packages:
@@ -100,6 +81,23 @@ The following functionality is available in all 3 packages:
100
81
  - A wizard to create a backlog-ops configuration file with the workforce, named
101
82
  input and output presets, level names, and status name mapping.
102
83
 
84
+ - Read a backlog and releases from Jira into a backlog and release table.
85
+
86
+ - Write a backlog to Jira, creating a new Jira issue for each backlog item.
87
+
88
+ - Update a backlog that is already in Jira, changing only the chosen columns.
89
+
90
+ - Add the releases to Jira as Jira versions.
91
+
92
+ - Update the releases in Jira, setting their dates to the planned release dates.
93
+
94
+ - Order the releases in Jira by date, by a name list, or by the input order.
95
+
96
+ - Rename releases in Jira, changing the Jira version names.
97
+
98
+ - Move backlog items to a chosen anchor in the Jira rank order, following a key
99
+ list.
100
+
103
101
  ## The operating model
104
102
 
105
103
  The operating model that most of the functionality is designed for is that the
@@ -135,8 +133,9 @@ the library:
135
133
  before the parent item starts, and the parent item cannot finish before all
136
134
  its children have finished.
137
135
 
138
- - `release` The release of the backlog item. Optional. Follows the same
139
- character rules as the key. Must not be empty string.
136
+ - `release` The release of the backlog item. Optional. Must not be empty string,
137
+ must not start or end with whitespace, and must not contain tabs, newlines or
138
+ control characters.
140
139
 
141
140
  - `team` The team responsible for the backlog item. Optional. Must not be empty
142
141
  string. Must be a valid team name. If None the item can be done by any team.
@@ -176,21 +175,27 @@ To install backlogops-gui on Microsoft Windows, run the following command:
176
175
  pip install --upgrade backlogops-gui
177
176
  ````
178
177
 
178
+ ## Using backlogops documentation
179
+
180
+ For a better understanding of how to use the library, CLI or GUI, see the user
181
+ documentation:
182
+ [Using backlogops](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc//using_backlogops/README.md)
183
+
179
184
  ## API documentation
180
185
 
181
186
  For more detailed code documentation, see the API documentation:
182
187
 
183
- - [Library public API](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_api.md)
188
+ - [Library public API](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_api.md)
184
189
 
185
- - [Library protected API](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_api.md)
190
+ - [Library protected API](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_api.md)
186
191
 
187
- - [Library public CLI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_cli.md)
192
+ - [Public CLI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_cli.md)
188
193
 
189
- - [Library protected CLI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_cli.md)
194
+ - [Protected CLI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_cli.md)
190
195
 
191
- - [Library public GUI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_gui.md)
196
+ - [Public GUI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_gui.md)
192
197
 
193
- - [Library protected GUI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_gui.md)
198
+ - [Protected GUI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_gui.md)
194
199
 
195
200
  ## Graphical user interface for backlog manipulation
196
201
 
@@ -229,8 +234,12 @@ is in the menus.
229
234
 
230
235
  - File
231
236
 
232
- - Read backlog...: Read in a file with a backlog and list of releases.
233
- A new backlog window will be opened with the read in backlog.
237
+ - Read backlog from file...: Read in a file with a backlog and list
238
+ of releases. A new backlog window will be opened with the read in
239
+ backlog.
240
+
241
+ - Read backlog from Jira...: Read a backlog and list of releases from
242
+ Jira. A new backlog window will be opened with the read in backlog.
234
243
 
235
244
  - New demo backlog: Create a demo backlog with some backlog items and
236
245
  releases. A new backlog window will be opened with the demo backlog.
@@ -239,6 +248,9 @@ is in the menus.
239
248
 
240
249
  - Configuration
241
250
 
251
+ - Load configuration file...: Load a configuration file, replacing the
252
+ configuration currently active in the application.
253
+
242
254
  - Run configuration wizard...: this lets you configure the teams that work on
243
255
  the backlog and also other aspects like the dates the company is
244
256
  closed for vacation, and preset configuration for the inputs or
@@ -253,6 +265,10 @@ is in the menus.
253
265
  - Write configuration...: This lets you write the configuration you
254
266
  have in application to a file.
255
267
 
268
+ - Encrypt Jira API token file...: Encrypt a Jira API token to a
269
+ pass-phrase-protected file, for use with the ENCRYPTED_FILE token
270
+ storage mode.
271
+
256
272
  - Help
257
273
 
258
274
  - Report version information: Show version information for the
@@ -287,11 +303,27 @@ one with the list of releases. You will want to use the menus.
287
303
 
288
304
  - Close
289
305
 
306
+ - Jira
307
+
308
+ - Add backlog to Jira...
309
+
310
+ - Update backlog in Jira...
311
+
312
+ - Add releases to Jira...
313
+
314
+ - Update releases in Jira...
315
+
316
+ - Order releases in Jira...
317
+
318
+ - Rename releases in Jira...
319
+
320
+ - Rank items in Jira...
321
+
290
322
  ## Test summary
291
323
 
292
- - Test result: 1545 passed in 32s
324
+ - Test result: 2638 passed, 7 deselected in 51s
293
325
  - No flake8 warnings.
294
326
  - No mypy errors found.
295
327
  - No python layout warnings.
296
- - Built version(s): 0.2
328
+ - Built version(s): 0.4
297
329
  - Build and test using Python 3.14.6
@@ -1,3 +1,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: backlogops-gui
3
+ Version: 0.4
4
+ Summary: Graphical user interface for backlog operations.
5
+ Author: Tom Björkholm
6
+ Author-email: Tom Björkholm <klausuler_linnet0q@icloud.com>
7
+ License-Expression: MIT
8
+ Project-URL: Homepage, https://github.com/tom-bjorkholm/backlog-ops
9
+ Project-URL: Source code, https://github.com/tom-bjorkholm/backlog-ops
10
+ Project-URL: Documentation, https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/using_backlogops/README.md
11
+ Keywords: backlog,release planning,agile,scrum,scheduling,roadmap,project management,product owner,product management
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Classifier: Programming Language :: Python :: 3.14
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Development Status :: 4 - Beta
18
+ Classifier: Intended Audience :: End Users/Desktop
19
+ Classifier: Intended Audience :: Information Technology
20
+ Classifier: Topic :: Office/Business :: Scheduling
21
+ Classifier: Typing :: Typed
22
+ Requires-Python: >=3.12
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE.txt
25
+ Requires-Dist: backlogops>=0.4
26
+ Requires-Dist: argcomplete>=3.7.0
27
+ Requires-Dist: versionreporter>=0.4
28
+ Dynamic: author
29
+ Dynamic: license-file
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+
1
33
  # backlogops-gui
2
34
 
3
35
  There are 3 related packages for backlog operations:
@@ -14,6 +46,18 @@ There are 3 related packages for backlog operations:
14
46
  interface to use the functions in the library. It is based on TkInter. The
15
47
  ambition is to keep it as a thin wrapper around the library.
16
48
 
49
+ ## Project status
50
+
51
+ backlogops is in beta. The algorithms intended for its initial scope are in
52
+ place, so the main work from here is on the user experience rather than on new
53
+ core functionality. The three packages share a version number and are released
54
+ together.
55
+
56
+ The library is not meant to ever be "finished": using it for real planning keeps
57
+ surfacing new ideas. Some of those will be added to backlogops itself, and
58
+ others will fit better in separate packages built on top of backlogops. Early
59
+ adopters are very welcome, and their feedback shapes what comes next.
60
+
17
61
  ## Available functionality
18
62
 
19
63
  The following functionality is available in all 3 packages:
@@ -69,6 +113,23 @@ The following functionality is available in all 3 packages:
69
113
  - A wizard to create a backlog-ops configuration file with the workforce, named
70
114
  input and output presets, level names, and status name mapping.
71
115
 
116
+ - Read a backlog and releases from Jira into a backlog and release table.
117
+
118
+ - Write a backlog to Jira, creating a new Jira issue for each backlog item.
119
+
120
+ - Update a backlog that is already in Jira, changing only the chosen columns.
121
+
122
+ - Add the releases to Jira as Jira versions.
123
+
124
+ - Update the releases in Jira, setting their dates to the planned release dates.
125
+
126
+ - Order the releases in Jira by date, by a name list, or by the input order.
127
+
128
+ - Rename releases in Jira, changing the Jira version names.
129
+
130
+ - Move backlog items to a chosen anchor in the Jira rank order, following a key
131
+ list.
132
+
72
133
  ## The operating model
73
134
 
74
135
  The operating model that most of the functionality is designed for is that the
@@ -104,8 +165,9 @@ the library:
104
165
  before the parent item starts, and the parent item cannot finish before all
105
166
  its children have finished.
106
167
 
107
- - `release` The release of the backlog item. Optional. Follows the same
108
- character rules as the key. Must not be empty string.
168
+ - `release` The release of the backlog item. Optional. Must not be empty string,
169
+ must not start or end with whitespace, and must not contain tabs, newlines or
170
+ control characters.
109
171
 
110
172
  - `team` The team responsible for the backlog item. Optional. Must not be empty
111
173
  string. Must be a valid team name. If None the item can be done by any team.
@@ -145,21 +207,27 @@ To install backlogops-gui on Microsoft Windows, run the following command:
145
207
  pip install --upgrade backlogops-gui
146
208
  ````
147
209
 
210
+ ## Using backlogops documentation
211
+
212
+ For a better understanding of how to use the library, CLI or GUI, see the user
213
+ documentation:
214
+ [Using backlogops](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc//using_backlogops/README.md)
215
+
148
216
  ## API documentation
149
217
 
150
218
  For more detailed code documentation, see the API documentation:
151
219
 
152
- - [Library public API](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_api.md)
220
+ - [Library public API](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_api.md)
153
221
 
154
- - [Library protected API](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_api.md)
222
+ - [Library protected API](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_api.md)
155
223
 
156
- - [Library public CLI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_cli.md)
224
+ - [Public CLI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_cli.md)
157
225
 
158
- - [Library protected CLI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_cli.md)
226
+ - [Protected CLI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_cli.md)
159
227
 
160
- - [Library public GUI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_gui.md)
228
+ - [Public GUI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_gui.md)
161
229
 
162
- - [Library protected GUI](https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/backlogops_protected_gui.md)
230
+ - [Protected GUI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_gui.md)
163
231
 
164
232
  ## Graphical user interface for backlog manipulation
165
233
 
@@ -198,8 +266,12 @@ is in the menus.
198
266
 
199
267
  - File
200
268
 
201
- - Read backlog...: Read in a file with a backlog and list of releases.
202
- A new backlog window will be opened with the read in backlog.
269
+ - Read backlog from file...: Read in a file with a backlog and list
270
+ of releases. A new backlog window will be opened with the read in
271
+ backlog.
272
+
273
+ - Read backlog from Jira...: Read a backlog and list of releases from
274
+ Jira. A new backlog window will be opened with the read in backlog.
203
275
 
204
276
  - New demo backlog: Create a demo backlog with some backlog items and
205
277
  releases. A new backlog window will be opened with the demo backlog.
@@ -208,6 +280,9 @@ is in the menus.
208
280
 
209
281
  - Configuration
210
282
 
283
+ - Load configuration file...: Load a configuration file, replacing the
284
+ configuration currently active in the application.
285
+
211
286
  - Run configuration wizard...: this lets you configure the teams that work on
212
287
  the backlog and also other aspects like the dates the company is
213
288
  closed for vacation, and preset configuration for the inputs or
@@ -222,6 +297,10 @@ is in the menus.
222
297
  - Write configuration...: This lets you write the configuration you
223
298
  have in application to a file.
224
299
 
300
+ - Encrypt Jira API token file...: Encrypt a Jira API token to a
301
+ pass-phrase-protected file, for use with the ENCRYPTED_FILE token
302
+ storage mode.
303
+
225
304
  - Help
226
305
 
227
306
  - Report version information: Show version information for the
@@ -256,11 +335,27 @@ one with the list of releases. You will want to use the menus.
256
335
 
257
336
  - Close
258
337
 
338
+ - Jira
339
+
340
+ - Add backlog to Jira...
341
+
342
+ - Update backlog in Jira...
343
+
344
+ - Add releases to Jira...
345
+
346
+ - Update releases in Jira...
347
+
348
+ - Order releases in Jira...
349
+
350
+ - Rename releases in Jira...
351
+
352
+ - Rank items in Jira...
353
+
259
354
  ## Test summary
260
355
 
261
- - Test result: 1545 passed in 32s
356
+ - Test result: 2638 passed, 7 deselected in 51s
262
357
  - No flake8 warnings.
263
358
  - No mypy errors found.
264
359
  - No python layout warnings.
265
- - Built version(s): 0.2
360
+ - Built version(s): 0.4
266
361
  - Build and test using Python 3.14.6
@@ -0,0 +1,47 @@
1
+ LICENSE.txt
2
+ README_pypi.md
3
+ pyproject.toml
4
+ setup.py
5
+ backlogops_gui.egg-info/PKG-INFO
6
+ backlogops_gui.egg-info/SOURCES.txt
7
+ backlogops_gui.egg-info/dependency_links.txt
8
+ backlogops_gui.egg-info/entry_points.txt
9
+ backlogops_gui.egg-info/requires.txt
10
+ backlogops_gui.egg-info/top_level.txt
11
+ src/backlogops_gui/__init__.py
12
+ src/backlogops_gui/__main__.py
13
+ src/backlogops_gui/_migrate_warn.py
14
+ src/backlogops_gui/application.py
15
+ src/backlogops_gui/auto_scroll.py
16
+ src/backlogops_gui/backlog_actions.py
17
+ src/backlogops_gui/backlog_dialogs.py
18
+ src/backlogops_gui/backlog_io.py
19
+ src/backlogops_gui/backlog_window.py
20
+ src/backlogops_gui/blog_version_reporter.py
21
+ src/backlogops_gui/choice_dialogs.py
22
+ src/backlogops_gui/close_binding.py
23
+ src/backlogops_gui/file_choosers.py
24
+ src/backlogops_gui/format_dialogs.py
25
+ src/backlogops_gui/gui_style.py
26
+ src/backlogops_gui/gui_wizard.py
27
+ src/backlogops_gui/jira_actions.py
28
+ src/backlogops_gui/jira_base.py
29
+ src/backlogops_gui/jira_dialogs.py
30
+ src/backlogops_gui/jira_order.py
31
+ src/backlogops_gui/jira_rank.py
32
+ src/backlogops_gui/jira_read.py
33
+ src/backlogops_gui/jira_rename.py
34
+ src/backlogops_gui/jira_update.py
35
+ src/backlogops_gui/jira_write.py
36
+ src/backlogops_gui/log_buffer.py
37
+ src/backlogops_gui/modal_dialog.py
38
+ src/backlogops_gui/py.typed
39
+ src/backlogops_gui/python_version.py
40
+ src/backlogops_gui/report_windows.py
41
+ src/backlogops_gui/table_view.py
42
+ src/backlogops_gui/tcltk_version.py
43
+ src/backlogops_gui/token_dialog.py
44
+ src/backlogops_gui/wizard_form.py
45
+ src/backlogops_gui/wizard_path.py
46
+ src/backlogops_gui/wizard_table.py
47
+ src/backlogops_gui/wizard_window.py
@@ -0,0 +1,3 @@
1
+ backlogops>=0.4
2
+ argcomplete>=3.7.0
3
+ versionreporter>=0.4
@@ -4,7 +4,6 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "backlogops-gui"
7
- version = "0.2"
8
7
  authors = [
9
8
  { name="Tom Björkholm", email="klausuler_linnet0q@icloud.com" },
10
9
  ]
@@ -22,17 +21,18 @@ classifiers = [
22
21
  "Programming Language :: Python :: 3.13",
23
22
  "Programming Language :: Python :: 3.14",
24
23
  "Operating System :: OS Independent",
25
- "Development Status :: 3 - Alpha",
24
+ "Development Status :: 4 - Beta",
26
25
  "Intended Audience :: End Users/Desktop",
27
26
  "Intended Audience :: Information Technology",
28
- "Topic :: Office/Business :: Scheduling"
27
+ "Topic :: Office/Business :: Scheduling",
28
+ "Typing :: Typed"
29
29
  ]
30
- dynamic = ["dependencies"]
30
+ dynamic = ["dependencies", "version"]
31
31
 
32
32
  [project.urls]
33
- "Homepage" = "https://bitbucket.org/tom-bjorkholm/backlog-ops"
34
- "Source code" = "https://bitbucket.org/tom-bjorkholm/backlog-ops"
35
- "Documentation" = "https://bitbucket.org/tom-bjorkholm/backlog-ops/src/master/doc/"
33
+ "Homepage" = "https://github.com/tom-bjorkholm/backlog-ops"
34
+ "Source code" = "https://github.com/tom-bjorkholm/backlog-ops"
35
+ "Documentation" = "https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/using_backlogops/README.md"
36
36
 
37
37
  [project.gui-scripts]
38
38
  backlogops-gui = "backlogops_gui.application:main"