expandSeq 3.0.0__tar.gz → 4.0.0__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.
@@ -1,6 +1,6 @@
1
1
  3-Clause BSD License
2
2
 
3
- Copyright (c) 2008-2022, James Philip Rowell,
3
+ Copyright (c) 2008-2025, James Philip Rowell,
4
4
  Alpha Eleven Incorporated
5
5
  www.alpha-eleven.com
6
6
  All rights reserved.
@@ -1,12 +1,10 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: expandSeq
3
- Version: 3.0.0
3
+ Version: 4.0.0
4
4
  Summary: Command line utils to expose functionality of seqLister python library.
5
5
  Home-page: https://github.com/jrowellfx/expandSeq
6
6
  Author: James Philip Rowell
7
7
  Author-email: james@alpha-eleven.com
8
- License: UNKNOWN
9
- Platform: UNKNOWN
10
8
  Classifier: Programming Language :: Python :: 3
11
9
  Classifier: License :: OSI Approved :: BSD License
12
10
  Classifier: Operating System :: POSIX
@@ -16,6 +14,16 @@ Classifier: Development Status :: 5 - Production/Stable
16
14
  Requires-Python: >=3.6, <4
17
15
  Description-Content-Type: text/markdown
18
16
  License-File: LICENSE
17
+ Requires-Dist: seqLister>=1.1.0
18
+ Dynamic: author
19
+ Dynamic: author-email
20
+ Dynamic: classifier
21
+ Dynamic: description
22
+ Dynamic: description-content-type
23
+ Dynamic: home-page
24
+ Dynamic: requires-dist
25
+ Dynamic: requires-python
26
+ Dynamic: summary
19
27
 
20
28
  # About expandseq and consdenseseq
21
29
 
@@ -38,13 +46,15 @@ frame-ranges is one of the following three cases:
38
46
  to be no larger than B when A < B, or descending
39
47
  to be no less than B when A > B.
40
48
 
41
- The above three cases may often be combined to describe
49
+ The above three cases may be combined to describe
42
50
  less regular lists of Frame-Ranges by concatenating one
43
51
  Frame-Range after another separated by spaces or commas.
44
52
 
45
53
  ## Installing the commands
46
54
 
47
- python3 -m pip install expandSeq
55
+ ```
56
+ python3 -m pip install expandSeq --upgrade
57
+ ```
48
58
 
49
59
  ## Testing the installation
50
60
 
@@ -52,9 +62,9 @@ You should be able to run the following commands and get this output.
52
62
 
53
63
  ```
54
64
  1$ expandseq 1-10
55
- 1,2,3,4,5,6,7,8,9,10
65
+ 1 2 3 4 5 6 7 8 9 10
56
66
  2$ condenseseq 1 2 3 4 5 7 9 11 13 15
57
- 1-4,5-15x2
67
+ 1-4 5-15x2
58
68
  ```
59
69
 
60
70
  ## expandseq
@@ -98,7 +108,7 @@ optional arguments:
98
108
  --reverse, -r reverse the order of the list
99
109
  --sort, -s sort the resulting list
100
110
  --error exit with error if FRAME-RANGE is invalid. (default)
101
- --noError skip invalid FRAME-RANGEs, but print warning
111
+ --no-error skip invalid FRAME-RANGEs, but print warning
102
112
  --silent, --quiet suppress all errors and warnings
103
113
  ```
104
114
 
@@ -132,14 +142,12 @@ optional arguments:
132
142
  --delimiter DELIMITER, -d DELIMITER
133
143
  List successive numbers delimited by a 'comma',
134
144
  'space' (default) or a 'newline'.
135
- --onlyOnes only condense sucessive frames, that is, do not list
145
+ --only-ones only condense sucessive frames, that is, do not list
136
146
  sequences on 2's, 3's, ... N's
137
147
  --pad PAD set the padding of the frame numbers to be <PAD>
138
148
  digits. [default: 1]
139
149
  --error exit with error if FRAME-RANGE is invalid. (default)
140
- --noError skip invalid FRAME-RANGEs, but print warning
150
+ --no-error skip invalid FRAME-RANGEs, but print warning
141
151
  --silent, --quiet suppress all errors and warnings
142
152
 
143
153
  ```
144
-
145
-
@@ -19,13 +19,15 @@ frame-ranges is one of the following three cases:
19
19
  to be no larger than B when A < B, or descending
20
20
  to be no less than B when A > B.
21
21
 
22
- The above three cases may often be combined to describe
22
+ The above three cases may be combined to describe
23
23
  less regular lists of Frame-Ranges by concatenating one
24
24
  Frame-Range after another separated by spaces or commas.
25
25
 
26
26
  ## Installing the commands
27
27
 
28
- python3 -m pip install expandSeq
28
+ ```
29
+ python3 -m pip install expandSeq --upgrade
30
+ ```
29
31
 
30
32
  ## Testing the installation
31
33
 
@@ -33,9 +35,9 @@ You should be able to run the following commands and get this output.
33
35
 
34
36
  ```
35
37
  1$ expandseq 1-10
36
- 1,2,3,4,5,6,7,8,9,10
38
+ 1 2 3 4 5 6 7 8 9 10
37
39
  2$ condenseseq 1 2 3 4 5 7 9 11 13 15
38
- 1-4,5-15x2
40
+ 1-4 5-15x2
39
41
  ```
40
42
 
41
43
  ## expandseq
@@ -79,7 +81,7 @@ optional arguments:
79
81
  --reverse, -r reverse the order of the list
80
82
  --sort, -s sort the resulting list
81
83
  --error exit with error if FRAME-RANGE is invalid. (default)
82
- --noError skip invalid FRAME-RANGEs, but print warning
84
+ --no-error skip invalid FRAME-RANGEs, but print warning
83
85
  --silent, --quiet suppress all errors and warnings
84
86
  ```
85
87
 
@@ -113,12 +115,12 @@ optional arguments:
113
115
  --delimiter DELIMITER, -d DELIMITER
114
116
  List successive numbers delimited by a 'comma',
115
117
  'space' (default) or a 'newline'.
116
- --onlyOnes only condense sucessive frames, that is, do not list
118
+ --only-ones only condense sucessive frames, that is, do not list
117
119
  sequences on 2's, 3's, ... N's
118
120
  --pad PAD set the padding of the frame numbers to be <PAD>
119
121
  digits. [default: 1]
120
122
  --error exit with error if FRAME-RANGE is invalid. (default)
121
- --noError skip invalid FRAME-RANGEs, but print warning
123
+ --no-error skip invalid FRAME-RANGEs, but print warning
122
124
  --silent, --quiet suppress all errors and warnings
123
125
 
124
126
  ```
@@ -2,7 +2,7 @@
2
2
 
3
3
  # 3-Clause BSD License
4
4
  #
5
- # Copyright (c) 2008-2023, James Philip Rowell,
5
+ # Copyright (c) 2008-2025, James Philip Rowell,
6
6
  # Alpha Eleven Incorporated
7
7
  # www.alpha-eleven.com
8
8
  # All rights reserved.
@@ -52,7 +52,7 @@ import seqLister
52
52
  # MINOR version for added functionality in a backwards compatible manner
53
53
  # PATCH version for backwards compatible bug fixes
54
54
  #
55
- VERSION = "3.0.0"
55
+ VERSION = "4.0.0"
56
56
 
57
57
  PROG_NAME = "condenseseq"
58
58
 
@@ -117,7 +117,7 @@ def main():
117
117
  metavar="DELIMITER",
118
118
  default="space",
119
119
  help="List successive numbers delimited by a 'comma', 'space' (default) or a 'newline'.")
120
- p.add_argument("--onlyOnes", action="store_true",
120
+ p.add_argument("--only-ones", action="store_true",
121
121
  dest="onlyOnes", default=False,
122
122
  help="only condense sucessive frames, that is, do not list sequences on 2's, 3's, ... N's")
123
123
  p.add_argument("--pad", action="store", type=int,
@@ -128,7 +128,7 @@ def main():
128
128
  p.add_argument("--error", action="store_true",
129
129
  dest="exitOnError", default=True,
130
130
  help="exit with error if FRAME-RANGE is invalid. (default)" )
131
- p.add_argument("--noError", action="store_false",
131
+ p.add_argument("--no-error", action="store_false",
132
132
  dest="exitOnError",
133
133
  help="skip invalid FRAME-RANGEs, but print warning" )
134
134
 
@@ -1,12 +1,10 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: expandSeq
3
- Version: 3.0.0
3
+ Version: 4.0.0
4
4
  Summary: Command line utils to expose functionality of seqLister python library.
5
5
  Home-page: https://github.com/jrowellfx/expandSeq
6
6
  Author: James Philip Rowell
7
7
  Author-email: james@alpha-eleven.com
8
- License: UNKNOWN
9
- Platform: UNKNOWN
10
8
  Classifier: Programming Language :: Python :: 3
11
9
  Classifier: License :: OSI Approved :: BSD License
12
10
  Classifier: Operating System :: POSIX
@@ -16,6 +14,16 @@ Classifier: Development Status :: 5 - Production/Stable
16
14
  Requires-Python: >=3.6, <4
17
15
  Description-Content-Type: text/markdown
18
16
  License-File: LICENSE
17
+ Requires-Dist: seqLister>=1.1.0
18
+ Dynamic: author
19
+ Dynamic: author-email
20
+ Dynamic: classifier
21
+ Dynamic: description
22
+ Dynamic: description-content-type
23
+ Dynamic: home-page
24
+ Dynamic: requires-dist
25
+ Dynamic: requires-python
26
+ Dynamic: summary
19
27
 
20
28
  # About expandseq and consdenseseq
21
29
 
@@ -38,13 +46,15 @@ frame-ranges is one of the following three cases:
38
46
  to be no larger than B when A < B, or descending
39
47
  to be no less than B when A > B.
40
48
 
41
- The above three cases may often be combined to describe
49
+ The above three cases may be combined to describe
42
50
  less regular lists of Frame-Ranges by concatenating one
43
51
  Frame-Range after another separated by spaces or commas.
44
52
 
45
53
  ## Installing the commands
46
54
 
47
- python3 -m pip install expandSeq
55
+ ```
56
+ python3 -m pip install expandSeq --upgrade
57
+ ```
48
58
 
49
59
  ## Testing the installation
50
60
 
@@ -52,9 +62,9 @@ You should be able to run the following commands and get this output.
52
62
 
53
63
  ```
54
64
  1$ expandseq 1-10
55
- 1,2,3,4,5,6,7,8,9,10
65
+ 1 2 3 4 5 6 7 8 9 10
56
66
  2$ condenseseq 1 2 3 4 5 7 9 11 13 15
57
- 1-4,5-15x2
67
+ 1-4 5-15x2
58
68
  ```
59
69
 
60
70
  ## expandseq
@@ -98,7 +108,7 @@ optional arguments:
98
108
  --reverse, -r reverse the order of the list
99
109
  --sort, -s sort the resulting list
100
110
  --error exit with error if FRAME-RANGE is invalid. (default)
101
- --noError skip invalid FRAME-RANGEs, but print warning
111
+ --no-error skip invalid FRAME-RANGEs, but print warning
102
112
  --silent, --quiet suppress all errors and warnings
103
113
  ```
104
114
 
@@ -132,14 +142,12 @@ optional arguments:
132
142
  --delimiter DELIMITER, -d DELIMITER
133
143
  List successive numbers delimited by a 'comma',
134
144
  'space' (default) or a 'newline'.
135
- --onlyOnes only condense sucessive frames, that is, do not list
145
+ --only-ones only condense sucessive frames, that is, do not list
136
146
  sequences on 2's, 3's, ... N's
137
147
  --pad PAD set the padding of the frame numbers to be <PAD>
138
148
  digits. [default: 1]
139
149
  --error exit with error if FRAME-RANGE is invalid. (default)
140
- --noError skip invalid FRAME-RANGEs, but print warning
150
+ --no-error skip invalid FRAME-RANGEs, but print warning
141
151
  --silent, --quiet suppress all errors and warnings
142
152
 
143
153
  ```
144
-
145
-
@@ -1,4 +1,3 @@
1
1
  [console_scripts]
2
2
  condenseseq = condenseseq.__main__:main
3
3
  expandseq = expandseq.__main__:main
4
-
@@ -2,7 +2,7 @@
2
2
 
3
3
  # 3-Clause BSD License
4
4
  #
5
- # Copyright (c) 2008-2023, James Philip Rowell,
5
+ # Copyright (c) 2008-2025, James Philip Rowell,
6
6
  # Alpha Eleven Incorporated
7
7
  # www.alpha-eleven.com
8
8
  # All rights reserved.
@@ -52,7 +52,7 @@ import seqLister
52
52
  # MINOR version for added functionality in a backwards compatible manner
53
53
  # PATCH version for backwards compatible bug fixes
54
54
  #
55
- VERSION = "3.0.0"
55
+ VERSION = "4.0.0"
56
56
 
57
57
  PROG_NAME = "expandseq"
58
58
 
@@ -138,7 +138,7 @@ def main():
138
138
  p.add_argument("--error", action="store_true",
139
139
  dest="exitOnError", default=True,
140
140
  help="exit with error if FRAME-RANGE is invalid. (default)" )
141
- p.add_argument("--noError", action="store_false",
141
+ p.add_argument("--no-error", action="store_false",
142
142
  dest="exitOnError",
143
143
  help="skip invalid FRAME-RANGEs, but print warning" )
144
144
 
@@ -8,7 +8,7 @@ long_description = (here / 'README.md').read_text(encoding='utf-8')
8
8
 
9
9
  setup(
10
10
  name = 'expandSeq',
11
- version = '3.0.0',
11
+ version = '4.0.0',
12
12
  description='Command line utils to expose functionality of seqLister python library.',
13
13
  long_description=long_description,
14
14
  long_description_content_type='text/markdown',
File without changes