backlogops-cli 0.1__tar.gz → 0.3__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 (48) hide show
  1. backlogops_cli-0.3/PKG-INFO +315 -0
  2. backlogops_cli-0.3/README_pypi.md +281 -0
  3. backlogops_cli-0.3/backlogops_cli.egg-info/PKG-INFO +315 -0
  4. {backlogops_cli-0.1 → backlogops_cli-0.3}/backlogops_cli.egg-info/SOURCES.txt +18 -1
  5. backlogops_cli-0.3/backlogops_cli.egg-info/requires.txt +3 -0
  6. {backlogops_cli-0.1 → backlogops_cli-0.3}/pyproject.toml +6 -5
  7. {backlogops_cli-0.1 → backlogops_cli-0.3}/setup.py +4 -3
  8. backlogops_cli-0.3/src/backlogops_cli/_command_io.py +430 -0
  9. backlogops_cli-0.3/src/backlogops_cli/_migrate_warn.py +56 -0
  10. backlogops_cli-0.3/src/backlogops_cli/_wizard_io.py +92 -0
  11. backlogops_cli-0.3/src/backlogops_cli/add_releases_to_jira.py +144 -0
  12. backlogops_cli-0.3/src/backlogops_cli/add_to_jira.py +151 -0
  13. {backlogops_cli-0.1 → backlogops_cli-0.3}/src/backlogops_cli/adjust_release_content.py +4 -3
  14. backlogops_cli-0.3/src/backlogops_cli/bloc_version_reporter.py +25 -0
  15. backlogops_cli-0.3/src/backlogops_cli/config_wizard.py +42 -0
  16. {backlogops_cli-0.1 → backlogops_cli-0.3}/src/backlogops_cli/convert.py +4 -7
  17. {backlogops_cli-0.1 → backlogops_cli-0.3}/src/backlogops_cli/demo_backlog.py +5 -6
  18. {backlogops_cli-0.1 → backlogops_cli-0.3}/src/backlogops_cli/estimate_ready_date.py +18 -28
  19. {backlogops_cli-0.1 → backlogops_cli-0.3}/src/backlogops_cli/extract_keys.py +13 -10
  20. backlogops_cli-0.3/src/backlogops_cli/jira_fields.py +91 -0
  21. {backlogops_cli-0.1 → backlogops_cli-0.3}/src/backlogops_cli/list.py +4 -1
  22. backlogops_cli-0.3/src/backlogops_cli/migrate_cfg.py +82 -0
  23. {backlogops_cli-0.1 → backlogops_cli-0.3}/src/backlogops_cli/order_by_deps.py +7 -8
  24. {backlogops_cli-0.1 → backlogops_cli-0.3}/src/backlogops_cli/order_by_keys.py +7 -8
  25. backlogops_cli-0.3/src/backlogops_cli/order_by_release.py +71 -0
  26. backlogops_cli-0.3/src/backlogops_cli/order_releases.py +61 -0
  27. backlogops_cli-0.3/src/backlogops_cli/order_releases_in_jira.py +128 -0
  28. {backlogops_cli-0.1 → backlogops_cli-0.3}/src/backlogops_cli/plan_release_dates.py +4 -3
  29. backlogops_cli-0.3/src/backlogops_cli/preset_wizard.py +48 -0
  30. backlogops_cli-0.3/src/backlogops_cli/rank_in_jira.py +120 -0
  31. backlogops_cli-0.3/src/backlogops_cli/read_jira.py +92 -0
  32. backlogops_cli-0.3/src/backlogops_cli/rename_releases_in_jira.py +120 -0
  33. backlogops_cli-0.3/src/backlogops_cli/update_backlog_in_jira.py +177 -0
  34. backlogops_cli-0.3/src/backlogops_cli/update_releases_in_jira.py +135 -0
  35. backlogops_cli-0.3/src/backlogops_cli/version.py +20 -0
  36. backlogops_cli-0.1/PKG-INFO +0 -216
  37. backlogops_cli-0.1/README_pypi.md +0 -184
  38. backlogops_cli-0.1/backlogops_cli.egg-info/PKG-INFO +0 -216
  39. backlogops_cli-0.1/backlogops_cli.egg-info/requires.txt +0 -2
  40. backlogops_cli-0.1/src/backlogops_cli/_command_io.py +0 -220
  41. backlogops_cli-0.1/src/backlogops_cli/teams_wizard.py +0 -55
  42. {backlogops_cli-0.1 → backlogops_cli-0.3}/LICENSE.txt +0 -0
  43. {backlogops_cli-0.1 → backlogops_cli-0.3}/backlogops_cli.egg-info/dependency_links.txt +0 -0
  44. {backlogops_cli-0.1 → backlogops_cli-0.3}/backlogops_cli.egg-info/top_level.txt +0 -0
  45. {backlogops_cli-0.1 → backlogops_cli-0.3}/setup.cfg +0 -0
  46. {backlogops_cli-0.1 → backlogops_cli-0.3}/src/backlogops_cli/__init__.py +0 -0
  47. {backlogops_cli-0.1 → backlogops_cli-0.3}/src/backlogops_cli/__main__.py +0 -0
  48. {backlogops_cli-0.1 → backlogops_cli-0.3}/src/backlogops_cli/py.typed +0 -0
@@ -0,0 +1,315 @@
1
+ Metadata-Version: 2.4
2
+ Name: backlogops-cli
3
+ Version: 0.3
4
+ Summary: Command line 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 :: 3 - Alpha
18
+ Classifier: Environment :: Console
19
+ Classifier: Intended Audience :: Developers
20
+ Classifier: Intended Audience :: End Users/Desktop
21
+ Classifier: Intended Audience :: Information Technology
22
+ Classifier: Topic :: Office/Business :: Scheduling
23
+ Classifier: Typing :: Typed
24
+ Requires-Python: >=3.12
25
+ Description-Content-Type: text/markdown
26
+ License-File: LICENSE.txt
27
+ Requires-Dist: argcomplete>=3.7.0
28
+ Requires-Dist: backlogops>=0.3
29
+ Requires-Dist: versionreporter>=0.4
30
+ Dynamic: author
31
+ Dynamic: license-file
32
+ Dynamic: requires-dist
33
+ Dynamic: requires-python
34
+
35
+ # backlogops-cli
36
+
37
+ There are 3 related packages for backlog operations:
38
+
39
+ - **[backlogops](https://pypi.org/project/backlogops/)** a collection of library
40
+ functions to manipulate backlogs
41
+
42
+ - **[backlogops-cli](https://pypi.org/project/backlogops-cli/)** command line
43
+ interface to use the functions in the library. This is just a thin wrapper
44
+ around the library functions. It serves a dual purpose as both an example of
45
+ how to use the library and as a tool for the user to use the library.
46
+
47
+ - **[backlogops-gui](https://pypi.org/project/backlogops-gui/)** graphical user
48
+ interface to use the functions in the library. It is based on TkInter. The
49
+ ambition is to keep it as a thin wrapper around the library.
50
+
51
+ ## Available functionality
52
+
53
+ The following functionality is available in all 3 packages:
54
+
55
+ - Reading backlog and releases from file types that TableIO supports reading
56
+ from (Currently CSV, Excel, and ODS).
57
+
58
+ - Writing backlog and releases to file types that TableIO supports writing to
59
+ (Currently CSV, Excel, ODS and 9 other file formats).
60
+
61
+ - File format is detected from the file extension, but may be overridden.
62
+
63
+ - Adjust release content to fit the planned release dates.
64
+
65
+ - Create a demonstration backlog and releases (for exploring the features).
66
+
67
+ - Estimate ready date for the backlog items based on available teams, team
68
+ velocity, vacation dates, periods with half time work, etc.
69
+
70
+ - Extract backlog keys at given backlog item levels.
71
+
72
+ - Reorder the backlog so that the dependencies are satisfied.
73
+
74
+ - Reorder the backlog so that items identified by keys in a list come first. If
75
+ the key is at a higher level it will bring all items it is a parent of in
76
+ front of it (recursively).
77
+
78
+ - Reorder the backlog in release order, optionally taking dependencies into
79
+ account.
80
+
81
+ - Set planned release dates from the estimated release dates.
82
+
83
+ - Calculate the release dates from the backlog items estimated ready dates, with
84
+ a configurable buffer time.
85
+
86
+ - Validate the backlog and releases for consistency.
87
+
88
+ - Convert a backlog and releases between table file formats.
89
+
90
+ - Order the releases by their planned or estimated date.
91
+
92
+ - Rename columns when reading a file and when writing a file.
93
+
94
+ - Map custom status names in input files to backlog item statuses.
95
+
96
+ - Choose how backlog item levels are written: by number, by name, or both, and
97
+ configure custom level names.
98
+
99
+ - Create stand-alone input or output preset configuration files.
100
+
101
+ - Migrate an older configuration or preset file to the current file format.
102
+
103
+ - A wizard to create a backlog-ops configuration file with the workforce, named
104
+ input and output presets, level names, and status name mapping.
105
+
106
+ - Read a backlog and releases from Jira into a backlog and release table.
107
+
108
+ - Write a backlog to Jira, creating a new Jira issue for each backlog item.
109
+
110
+ - Update a backlog that is already in Jira, changing only the chosen columns.
111
+
112
+ - Add the releases to Jira as Jira versions.
113
+
114
+ - Update the releases in Jira, setting their dates to the planned release dates.
115
+
116
+ - Order the releases in Jira by date, by a name list, or by the input order.
117
+
118
+ - Rename releases in Jira, changing the Jira version names.
119
+
120
+ - Move backlog items to a chosen anchor in the Jira rank order, following a key
121
+ list.
122
+
123
+ ## The operating model
124
+
125
+ The operating model that most of the functionality is designed for is that the
126
+ teams work off a single backlog in the order of the backlog. The backlog items
127
+ are ordered by priority and dependencies to allow the teams to work in the
128
+ backlog order. Each backlog item and each release may have a planned ready date,
129
+ that records what has been communicated to the customer. Each backlog item and
130
+ each release may have an estimated ready date, that is calculated from the
131
+ current backlog state, the team velocity, and what we know about the
132
+ availability of the team members.
133
+
134
+ ## The backlog item fields
135
+
136
+ Each backlog item has the following fields that are used by the algorithms in
137
+ the library:
138
+
139
+ - `key` The key of the backlog item. Required. Must be unique. Must not be
140
+ empty, must not contain whitespace and must not contain any of the characters
141
+ , . ; : ( ) \[ \] \{ \}.
142
+
143
+ - `level` The level of the backlog item. Required. Must be an integer.
144
+
145
+ - `title` The title of the backlog item. Required.
146
+
147
+ - `story_points` The story points of the backlog item. Required.
148
+
149
+ - `status` The status of the backlog item. Required.
150
+
151
+ - `parent_key` The key of the parent backlog item. Optional. Must exist as a key
152
+ in the backlog. Parent keys are used to build the hierarchy of the backlog.
153
+ The parent key must be at a higher level than the current item. Parent keys
154
+ introduce implicit dependencies between items: the current item cannot start
155
+ before the parent item starts, and the parent item cannot finish before all
156
+ its children have finished.
157
+
158
+ - `release` The release of the backlog item. Optional. Must not be empty string,
159
+ must not start or end with whitespace, and must not contain tabs, newlines or
160
+ control characters.
161
+
162
+ - `team` The team responsible for the backlog item. Optional. Must not be empty
163
+ string. Must be a valid team name. If None the item can be done by any team.
164
+ If not None. the item can only be done by the specified team.
165
+
166
+ - `depends_on_f2s` The list of keys of the backlog items that must have been
167
+ finished before the current item can start. May be empty.
168
+
169
+ - `depends_on_f2f` The list of keys of the backlog items that must have been
170
+ finished before the current item can finish. May be empty.
171
+
172
+ - `depends_on_s2s` The list of keys of the backlog items that must have been
173
+ started before the current item can start. May be empty.
174
+
175
+ - `planned_ready_date` The planned ready date of the backlog item. The date that
176
+ is communicated to the customer. Optional.
177
+
178
+ - `estimated_ready_date` The estimated ready date of the backlog item. Optional.
179
+
180
+ Additionally each backlog item can have any number of other fields.
181
+
182
+ ## Installing backlogops-cli
183
+
184
+ ### On macOS and Linux
185
+
186
+ To install backlogops-cli on macOS and Linux, run the following command:
187
+
188
+ ````sh
189
+ pip3 install --upgrade backlogops-cli
190
+ ````
191
+
192
+ ### On Microsoft Windows
193
+
194
+ To install backlogops-cli on Microsoft Windows, run the following command:
195
+
196
+ ````sh
197
+ pip install --upgrade backlogops-cli
198
+ ````
199
+
200
+ ## Using backlogops documentation
201
+
202
+ For a better understanding of how to use the library, CLI or GUI, see the user
203
+ documentation:
204
+ [Using backlogops](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc//using_backlogops/README.md)
205
+
206
+ ## API documentation
207
+
208
+ For more detailed code documentation, see the API documentation:
209
+
210
+ - [Library public API](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_api.md)
211
+
212
+ - [Library protected API](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_api.md)
213
+
214
+ - [Public CLI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_cli.md)
215
+
216
+ - [Protected CLI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_cli.md)
217
+
218
+ - [Public GUI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_gui.md)
219
+
220
+ - [Protected GUI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_gui.md)
221
+
222
+ ## Command line backlog operations
223
+
224
+ backlogops_cli serves 2 purposes:
225
+
226
+ - as a command line utility collection for manipulating backlogs
227
+
228
+ - as an example of how to write your own programs that use the backlogops library
229
+
230
+ ### Currently available commands
231
+
232
+ ````text
233
+
234
+ python3 -m backlogops_cli.add_releases_to_jira
235
+ Add releases to Jira, creating a new version per release
236
+
237
+ python3 -m backlogops_cli.add_to_jira
238
+ Add a backlog to Jira, creating a new issue per item
239
+
240
+ python3 -m backlogops_cli.adjust_release_content
241
+ Adjust release content to fit the planned release dates
242
+
243
+ python3 -m backlogops_cli.config_wizard
244
+ Create a backlog-ops configuration file via a wizard
245
+
246
+ python3 -m backlogops_cli.convert
247
+ Convert a backlog and releases between table file formats
248
+
249
+ python3 -m backlogops_cli.demo_backlog
250
+ Write a demonstration backlog and releases to a file
251
+
252
+ python3 -m backlogops_cli.estimate_ready_date
253
+ Estimate ready dates for the backlog items
254
+
255
+ python3 -m backlogops_cli.extract_keys
256
+ Extract backlog keys at the given levels to a key list
257
+
258
+ python3 -m backlogops_cli.jira_fields
259
+ Print Jira custom fields and an issue's editable fields
260
+
261
+ python3 -m backlogops_cli.list
262
+ List all commands available in backlogops_cli
263
+
264
+ python3 -m backlogops_cli.migrate_cfg
265
+ Migrate a configuration file to the current file format
266
+
267
+ python3 -m backlogops_cli.order_by_deps
268
+ Reorder a backlog so that dependencies are fulfilled
269
+
270
+ python3 -m backlogops_cli.order_by_keys
271
+ Reorder a backlog so that key-list items come first
272
+
273
+ python3 -m backlogops_cli.order_by_release
274
+ Order the backlog to follow the release order
275
+
276
+ python3 -m backlogops_cli.order_releases
277
+ Order the releases by their planned or estimated date
278
+
279
+ python3 -m backlogops_cli.order_releases_in_jira
280
+ Order releases in Jira by date, a name list or the input order
281
+
282
+ python3 -m backlogops_cli.plan_release_dates
283
+ Set planned release dates from the estimated release dates
284
+
285
+ python3 -m backlogops_cli.preset_wizard
286
+ Create an input or output preset config file via a wizard
287
+
288
+ python3 -m backlogops_cli.rank_in_jira
289
+ Move key-list items to a chosen anchor in the Jira rank order
290
+
291
+ python3 -m backlogops_cli.read_jira
292
+ Read a backlog and releases from Jira and store to a file
293
+
294
+ python3 -m backlogops_cli.rename_releases_in_jira
295
+ Rename releases in Jira, changing Jira version names
296
+
297
+ python3 -m backlogops_cli.update_backlog_in_jira
298
+ Update a backlog in Jira, changing only the chosen columns
299
+
300
+ python3 -m backlogops_cli.update_releases_in_jira
301
+ Update releases in Jira, setting dates to the planned dates
302
+
303
+ python3 -m backlogops_cli.version
304
+ Print version information for the backlogops_cli package
305
+
306
+ ````
307
+
308
+ ## Test summary
309
+
310
+ - Test result: 2284 passed, 7 deselected in 44s
311
+ - No flake8 warnings.
312
+ - No mypy errors found.
313
+ - No python layout warnings.
314
+ - Built version(s): 0.3
315
+ - Build and test using Python 3.14.6
@@ -0,0 +1,281 @@
1
+ # backlogops-cli
2
+
3
+ There are 3 related packages for backlog operations:
4
+
5
+ - **[backlogops](https://pypi.org/project/backlogops/)** a collection of library
6
+ functions to manipulate backlogs
7
+
8
+ - **[backlogops-cli](https://pypi.org/project/backlogops-cli/)** command line
9
+ interface to use the functions in the library. This is just a thin wrapper
10
+ around the library functions. It serves a dual purpose as both an example of
11
+ how to use the library and as a tool for the user to use the library.
12
+
13
+ - **[backlogops-gui](https://pypi.org/project/backlogops-gui/)** graphical user
14
+ interface to use the functions in the library. It is based on TkInter. The
15
+ ambition is to keep it as a thin wrapper around the library.
16
+
17
+ ## Available functionality
18
+
19
+ The following functionality is available in all 3 packages:
20
+
21
+ - Reading backlog and releases from file types that TableIO supports reading
22
+ from (Currently CSV, Excel, and ODS).
23
+
24
+ - Writing backlog and releases to file types that TableIO supports writing to
25
+ (Currently CSV, Excel, ODS and 9 other file formats).
26
+
27
+ - File format is detected from the file extension, but may be overridden.
28
+
29
+ - Adjust release content to fit the planned release dates.
30
+
31
+ - Create a demonstration backlog and releases (for exploring the features).
32
+
33
+ - Estimate ready date for the backlog items based on available teams, team
34
+ velocity, vacation dates, periods with half time work, etc.
35
+
36
+ - Extract backlog keys at given backlog item levels.
37
+
38
+ - Reorder the backlog so that the dependencies are satisfied.
39
+
40
+ - Reorder the backlog so that items identified by keys in a list come first. If
41
+ the key is at a higher level it will bring all items it is a parent of in
42
+ front of it (recursively).
43
+
44
+ - Reorder the backlog in release order, optionally taking dependencies into
45
+ account.
46
+
47
+ - Set planned release dates from the estimated release dates.
48
+
49
+ - Calculate the release dates from the backlog items estimated ready dates, with
50
+ a configurable buffer time.
51
+
52
+ - Validate the backlog and releases for consistency.
53
+
54
+ - Convert a backlog and releases between table file formats.
55
+
56
+ - Order the releases by their planned or estimated date.
57
+
58
+ - Rename columns when reading a file and when writing a file.
59
+
60
+ - Map custom status names in input files to backlog item statuses.
61
+
62
+ - Choose how backlog item levels are written: by number, by name, or both, and
63
+ configure custom level names.
64
+
65
+ - Create stand-alone input or output preset configuration files.
66
+
67
+ - Migrate an older configuration or preset file to the current file format.
68
+
69
+ - A wizard to create a backlog-ops configuration file with the workforce, named
70
+ input and output presets, level names, and status name mapping.
71
+
72
+ - Read a backlog and releases from Jira into a backlog and release table.
73
+
74
+ - Write a backlog to Jira, creating a new Jira issue for each backlog item.
75
+
76
+ - Update a backlog that is already in Jira, changing only the chosen columns.
77
+
78
+ - Add the releases to Jira as Jira versions.
79
+
80
+ - Update the releases in Jira, setting their dates to the planned release dates.
81
+
82
+ - Order the releases in Jira by date, by a name list, or by the input order.
83
+
84
+ - Rename releases in Jira, changing the Jira version names.
85
+
86
+ - Move backlog items to a chosen anchor in the Jira rank order, following a key
87
+ list.
88
+
89
+ ## The operating model
90
+
91
+ The operating model that most of the functionality is designed for is that the
92
+ teams work off a single backlog in the order of the backlog. The backlog items
93
+ are ordered by priority and dependencies to allow the teams to work in the
94
+ backlog order. Each backlog item and each release may have a planned ready date,
95
+ that records what has been communicated to the customer. Each backlog item and
96
+ each release may have an estimated ready date, that is calculated from the
97
+ current backlog state, the team velocity, and what we know about the
98
+ availability of the team members.
99
+
100
+ ## The backlog item fields
101
+
102
+ Each backlog item has the following fields that are used by the algorithms in
103
+ the library:
104
+
105
+ - `key` The key of the backlog item. Required. Must be unique. Must not be
106
+ empty, must not contain whitespace and must not contain any of the characters
107
+ , . ; : ( ) \[ \] \{ \}.
108
+
109
+ - `level` The level of the backlog item. Required. Must be an integer.
110
+
111
+ - `title` The title of the backlog item. Required.
112
+
113
+ - `story_points` The story points of the backlog item. Required.
114
+
115
+ - `status` The status of the backlog item. Required.
116
+
117
+ - `parent_key` The key of the parent backlog item. Optional. Must exist as a key
118
+ in the backlog. Parent keys are used to build the hierarchy of the backlog.
119
+ The parent key must be at a higher level than the current item. Parent keys
120
+ introduce implicit dependencies between items: the current item cannot start
121
+ before the parent item starts, and the parent item cannot finish before all
122
+ its children have finished.
123
+
124
+ - `release` The release of the backlog item. Optional. Must not be empty string,
125
+ must not start or end with whitespace, and must not contain tabs, newlines or
126
+ control characters.
127
+
128
+ - `team` The team responsible for the backlog item. Optional. Must not be empty
129
+ string. Must be a valid team name. If None the item can be done by any team.
130
+ If not None. the item can only be done by the specified team.
131
+
132
+ - `depends_on_f2s` The list of keys of the backlog items that must have been
133
+ finished before the current item can start. May be empty.
134
+
135
+ - `depends_on_f2f` The list of keys of the backlog items that must have been
136
+ finished before the current item can finish. May be empty.
137
+
138
+ - `depends_on_s2s` The list of keys of the backlog items that must have been
139
+ started before the current item can start. May be empty.
140
+
141
+ - `planned_ready_date` The planned ready date of the backlog item. The date that
142
+ is communicated to the customer. Optional.
143
+
144
+ - `estimated_ready_date` The estimated ready date of the backlog item. Optional.
145
+
146
+ Additionally each backlog item can have any number of other fields.
147
+
148
+ ## Installing backlogops-cli
149
+
150
+ ### On macOS and Linux
151
+
152
+ To install backlogops-cli on macOS and Linux, run the following command:
153
+
154
+ ````sh
155
+ pip3 install --upgrade backlogops-cli
156
+ ````
157
+
158
+ ### On Microsoft Windows
159
+
160
+ To install backlogops-cli on Microsoft Windows, run the following command:
161
+
162
+ ````sh
163
+ pip install --upgrade backlogops-cli
164
+ ````
165
+
166
+ ## Using backlogops documentation
167
+
168
+ For a better understanding of how to use the library, CLI or GUI, see the user
169
+ documentation:
170
+ [Using backlogops](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc//using_backlogops/README.md)
171
+
172
+ ## API documentation
173
+
174
+ For more detailed code documentation, see the API documentation:
175
+
176
+ - [Library public API](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_api.md)
177
+
178
+ - [Library protected API](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_api.md)
179
+
180
+ - [Public CLI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_cli.md)
181
+
182
+ - [Protected CLI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_cli.md)
183
+
184
+ - [Public GUI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_gui.md)
185
+
186
+ - [Protected GUI code documentation](https://github.com/tom-bjorkholm/backlog-ops/blob/master/doc/backlogops_protected_gui.md)
187
+
188
+ ## Command line backlog operations
189
+
190
+ backlogops_cli serves 2 purposes:
191
+
192
+ - as a command line utility collection for manipulating backlogs
193
+
194
+ - as an example of how to write your own programs that use the backlogops library
195
+
196
+ ### Currently available commands
197
+
198
+ ````text
199
+
200
+ python3 -m backlogops_cli.add_releases_to_jira
201
+ Add releases to Jira, creating a new version per release
202
+
203
+ python3 -m backlogops_cli.add_to_jira
204
+ Add a backlog to Jira, creating a new issue per item
205
+
206
+ python3 -m backlogops_cli.adjust_release_content
207
+ Adjust release content to fit the planned release dates
208
+
209
+ python3 -m backlogops_cli.config_wizard
210
+ Create a backlog-ops configuration file via a wizard
211
+
212
+ python3 -m backlogops_cli.convert
213
+ Convert a backlog and releases between table file formats
214
+
215
+ python3 -m backlogops_cli.demo_backlog
216
+ Write a demonstration backlog and releases to a file
217
+
218
+ python3 -m backlogops_cli.estimate_ready_date
219
+ Estimate ready dates for the backlog items
220
+
221
+ python3 -m backlogops_cli.extract_keys
222
+ Extract backlog keys at the given levels to a key list
223
+
224
+ python3 -m backlogops_cli.jira_fields
225
+ Print Jira custom fields and an issue's editable fields
226
+
227
+ python3 -m backlogops_cli.list
228
+ List all commands available in backlogops_cli
229
+
230
+ python3 -m backlogops_cli.migrate_cfg
231
+ Migrate a configuration file to the current file format
232
+
233
+ python3 -m backlogops_cli.order_by_deps
234
+ Reorder a backlog so that dependencies are fulfilled
235
+
236
+ python3 -m backlogops_cli.order_by_keys
237
+ Reorder a backlog so that key-list items come first
238
+
239
+ python3 -m backlogops_cli.order_by_release
240
+ Order the backlog to follow the release order
241
+
242
+ python3 -m backlogops_cli.order_releases
243
+ Order the releases by their planned or estimated date
244
+
245
+ python3 -m backlogops_cli.order_releases_in_jira
246
+ Order releases in Jira by date, a name list or the input order
247
+
248
+ python3 -m backlogops_cli.plan_release_dates
249
+ Set planned release dates from the estimated release dates
250
+
251
+ python3 -m backlogops_cli.preset_wizard
252
+ Create an input or output preset config file via a wizard
253
+
254
+ python3 -m backlogops_cli.rank_in_jira
255
+ Move key-list items to a chosen anchor in the Jira rank order
256
+
257
+ python3 -m backlogops_cli.read_jira
258
+ Read a backlog and releases from Jira and store to a file
259
+
260
+ python3 -m backlogops_cli.rename_releases_in_jira
261
+ Rename releases in Jira, changing Jira version names
262
+
263
+ python3 -m backlogops_cli.update_backlog_in_jira
264
+ Update a backlog in Jira, changing only the chosen columns
265
+
266
+ python3 -m backlogops_cli.update_releases_in_jira
267
+ Update releases in Jira, setting dates to the planned dates
268
+
269
+ python3 -m backlogops_cli.version
270
+ Print version information for the backlogops_cli package
271
+
272
+ ````
273
+
274
+ ## Test summary
275
+
276
+ - Test result: 2284 passed, 7 deselected in 44s
277
+ - No flake8 warnings.
278
+ - No mypy errors found.
279
+ - No python layout warnings.
280
+ - Built version(s): 0.3
281
+ - Build and test using Python 3.14.6