omdev-cext 0.0.26__tar.gz → 0.0.28__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,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omdev-cext
3
- Version: 0.0.26
3
+ Version: 0.0.28
4
4
  Summary: omdev
5
5
  Author: wrmsr
6
6
  License-Expression: BSD-3-Clause
7
- Project-URL: source, https://github.com/wrmsr/omlish
7
+ Project-URL: source, https://github.com/wrmsr/omcore
8
8
  Classifier: Development Status :: 2 - Pre-Alpha
9
9
  Classifier: Intended Audience :: Developers
10
10
  Classifier: Operating System :: OS Independent
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.14
14
14
  Requires-Python: >=3.14
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
- Requires-Dist: omdev==0.0.26
17
+ Requires-Dist: omdev==0.0.28
18
18
  Dynamic: license-file
19
19
 
20
20
  # Overview
@@ -45,8 +45,8 @@ Development utilities and support code.
45
45
 
46
46
  - **[tools.json](https://github.com/wrmsr/omlish/blob/master/omdev/tools/json)** (cli: `om j`) - a tool for json-like
47
47
  data, obviously in the vein of [jq](https://github.com/jqlang/jq) but using the internal
48
- [jmespath](https://github.com/wrmsr/omlish/blob/master/omlish/specs/jmespath) engine. supports
49
- [true streaming](https://github.com/wrmsr/omlish/blob/master/omlish/formats/json/stream) json input and output, as
48
+ [jmespath](https://github.com/wrmsr/omlish/blob/master/omcore/specs/jmespath) engine. supports
49
+ [true streaming](https://github.com/wrmsr/omlish/blob/master/omcore/formats/json/stream) json input and output, as
50
50
  well as [various other](https://github.com/wrmsr/omlish/blob/master/omdev/tools/json/formats.py) non-streaming input
51
51
  formats.
52
52
 
@@ -56,7 +56,7 @@ Development utilities and support code.
56
56
  # Amalgamation
57
57
 
58
58
  Amalgamation is the process of stitching together multiple python source files into a single self-contained python
59
- script. ['lite'](https://github.com/wrmsr/omlish/blob/master/omlish#lite-code) code is written in a style conducive to
59
+ script. ['lite'](https://github.com/wrmsr/omlish/blob/master/omcore#lite-code) code is written in a style conducive to
60
60
  this.
61
61
 
62
62
  # Local storage
@@ -26,8 +26,8 @@ Development utilities and support code.
26
26
 
27
27
  - **[tools.json](https://github.com/wrmsr/omlish/blob/master/omdev/tools/json)** (cli: `om j`) - a tool for json-like
28
28
  data, obviously in the vein of [jq](https://github.com/jqlang/jq) but using the internal
29
- [jmespath](https://github.com/wrmsr/omlish/blob/master/omlish/specs/jmespath) engine. supports
30
- [true streaming](https://github.com/wrmsr/omlish/blob/master/omlish/formats/json/stream) json input and output, as
29
+ [jmespath](https://github.com/wrmsr/omlish/blob/master/omcore/specs/jmespath) engine. supports
30
+ [true streaming](https://github.com/wrmsr/omlish/blob/master/omcore/formats/json/stream) json input and output, as
31
31
  well as [various other](https://github.com/wrmsr/omlish/blob/master/omdev/tools/json/formats.py) non-streaming input
32
32
  formats.
33
33
 
@@ -37,7 +37,7 @@ Development utilities and support code.
37
37
  # Amalgamation
38
38
 
39
39
  Amalgamation is the process of stitching together multiple python source files into a single self-contained python
40
- script. ['lite'](https://github.com/wrmsr/omlish/blob/master/omlish#lite-code) code is written in a style conducive to
40
+ script. ['lite'](https://github.com/wrmsr/omlish/blob/master/omcore#lite-code) code is written in a style conducive to
41
41
  this.
42
42
 
43
43
  # Local storage
@@ -1,4 +1,4 @@
1
- // @omlish-cext
1
+ // @om-cext
2
2
  #define PY_SSIZE_T_CLEAN
3
3
  #include "Python.h"
4
4
  #include "structmember.h"
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omdev-cext
3
- Version: 0.0.26
3
+ Version: 0.0.28
4
4
  Summary: omdev
5
5
  Author: wrmsr
6
6
  License-Expression: BSD-3-Clause
7
- Project-URL: source, https://github.com/wrmsr/omlish
7
+ Project-URL: source, https://github.com/wrmsr/omcore
8
8
  Classifier: Development Status :: 2 - Pre-Alpha
9
9
  Classifier: Intended Audience :: Developers
10
10
  Classifier: Operating System :: OS Independent
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.14
14
14
  Requires-Python: >=3.14
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
- Requires-Dist: omdev==0.0.26
17
+ Requires-Dist: omdev==0.0.28
18
18
  Dynamic: license-file
19
19
 
20
20
  # Overview
@@ -45,8 +45,8 @@ Development utilities and support code.
45
45
 
46
46
  - **[tools.json](https://github.com/wrmsr/omlish/blob/master/omdev/tools/json)** (cli: `om j`) - a tool for json-like
47
47
  data, obviously in the vein of [jq](https://github.com/jqlang/jq) but using the internal
48
- [jmespath](https://github.com/wrmsr/omlish/blob/master/omlish/specs/jmespath) engine. supports
49
- [true streaming](https://github.com/wrmsr/omlish/blob/master/omlish/formats/json/stream) json input and output, as
48
+ [jmespath](https://github.com/wrmsr/omlish/blob/master/omcore/specs/jmespath) engine. supports
49
+ [true streaming](https://github.com/wrmsr/omlish/blob/master/omcore/formats/json/stream) json input and output, as
50
50
  well as [various other](https://github.com/wrmsr/omlish/blob/master/omdev/tools/json/formats.py) non-streaming input
51
51
  formats.
52
52
 
@@ -56,7 +56,7 @@ Development utilities and support code.
56
56
  # Amalgamation
57
57
 
58
58
  Amalgamation is the process of stitching together multiple python source files into a single self-contained python
59
- script. ['lite'](https://github.com/wrmsr/omlish/blob/master/omlish#lite-code) code is written in a style conducive to
59
+ script. ['lite'](https://github.com/wrmsr/omlish/blob/master/omcore#lite-code) code is written in a style conducive to
60
60
  this.
61
61
 
62
62
  # Local storage
@@ -0,0 +1 @@
1
+ omdev==0.0.28
@@ -9,11 +9,11 @@ name = 'omdev-cext'
9
9
  authors = [
10
10
  {name = 'wrmsr'},
11
11
  ]
12
- urls = {source = 'https://github.com/wrmsr/omlish'}
12
+ urls = {source = 'https://github.com/wrmsr/omcore'}
13
13
  license = 'BSD-3-Clause'
14
14
  readme = 'README.md'
15
15
  requires-python = '>=3.14'
16
- version = '0.0.26'
16
+ version = '0.0.28'
17
17
  classifiers = [
18
18
  'Development Status :: 2 - Pre-Alpha',
19
19
  'Intended Audience :: Developers',
@@ -24,7 +24,7 @@ classifiers = [
24
24
  ]
25
25
  description = 'omdev'
26
26
  dependencies = [
27
- 'omdev == 0.0.26',
27
+ 'omdev == 0.0.28',
28
28
  ]
29
29
 
30
30
  [tool.setuptools]
@@ -1 +0,0 @@
1
- omdev==0.0.26
File without changes
File without changes
File without changes