omdev 0.0.0.dev380__py3-none-any.whl → 0.0.0.dev382__py3-none-any.whl

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.
@@ -0,0 +1,98 @@
1
+ Metadata-Version: 2.4
2
+ Name: omdev
3
+ Version: 0.0.0.dev382
4
+ Summary: omdev
5
+ Author: wrmsr
6
+ License-Expression: BSD-3-Clause
7
+ Project-URL: source, https://github.com/wrmsr/omlish
8
+ Classifier: Development Status :: 2 - Pre-Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Operating System :: POSIX
12
+ Requires-Python: >=3.13
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: omlish==0.0.0.dev382
16
+ Provides-Extra: all
17
+ Requires-Dist: black~=25.1; extra == "all"
18
+ Requires-Dist: pycparser~=2.22; extra == "all"
19
+ Requires-Dist: pcpp~=1.30; extra == "all"
20
+ Requires-Dist: docutils~=0.22; extra == "all"
21
+ Requires-Dist: markdown-it-py~=3.0; extra == "all"
22
+ Requires-Dist: mdit-py-plugins~=0.4; extra == "all"
23
+ Requires-Dist: pygments~=2.19; extra == "all"
24
+ Requires-Dist: mypy~=1.17; extra == "all"
25
+ Requires-Dist: gprof2dot~=2025.4; extra == "all"
26
+ Requires-Dist: prompt-toolkit~=3.0; extra == "all"
27
+ Requires-Dist: segno~=1.6; extra == "all"
28
+ Provides-Extra: black
29
+ Requires-Dist: black~=25.1; extra == "black"
30
+ Provides-Extra: c
31
+ Requires-Dist: pycparser~=2.22; extra == "c"
32
+ Requires-Dist: pcpp~=1.30; extra == "c"
33
+ Provides-Extra: doc
34
+ Requires-Dist: docutils~=0.22; extra == "doc"
35
+ Requires-Dist: markdown-it-py~=3.0; extra == "doc"
36
+ Requires-Dist: mdit-py-plugins~=0.4; extra == "doc"
37
+ Requires-Dist: pygments~=2.19; extra == "doc"
38
+ Provides-Extra: mypy
39
+ Requires-Dist: mypy~=1.17; extra == "mypy"
40
+ Provides-Extra: prof
41
+ Requires-Dist: gprof2dot~=2025.4; extra == "prof"
42
+ Provides-Extra: ptk
43
+ Requires-Dist: prompt-toolkit~=3.0; extra == "ptk"
44
+ Provides-Extra: qr
45
+ Requires-Dist: segno~=1.6; extra == "qr"
46
+ Dynamic: license-file
47
+
48
+ # Overview
49
+
50
+ Development utilities and support code.
51
+
52
+ # Notable packages
53
+
54
+ - **[cli](https://github.com/wrmsr/omlish/blob/master/omdev/cli)** - The codebase's all-in-one CLI. This is not
55
+ installed as an entrypoint / command when this package is itself installed - that is separated into the `omdev-cli`
56
+ installable package so as to not pollute users' bin/ directories when depping this lib for its utility code.
57
+
58
+ - **[amalg](https://github.com/wrmsr/omlish/blob/master/omdev/amalg)** - The [amalgamator](#amalgamation).
59
+
60
+ - **[pyproject](https://github.com/wrmsr/omlish/blob/master/omdev/pyproject)**
61
+ ([amalg](https://github.com/wrmsr/omlish/blob/master/omdev/scripts/pyproject.py)) - python project management tool.
62
+ wrangles but does not replace tools like venv, pip, setuptools, and uv. does things like sets up venvs, generates
63
+ [`.pkg`](https://github.com/wrmsr/omlish/blob/master/.pkg) directories and their `pyproject.toml`'s (from their
64
+ `__about__.py`'s), and packages them. this should grow to eat more and more of the Makefile. as it is amalgamated it
65
+ requires no installation and can just be dropped into other projects / repos.
66
+
67
+ - **[ci](https://github.com/wrmsr/omlish/blob/master/omdev/ci)**
68
+ ([amalg](https://github.com/wrmsr/omlish/blob/master/omdev/scripts/ci.py)) - ci runner. given a
69
+ [`compose.yml`](https://github.com/wrmsr/omlish/blob/master/docker/compose.yml)
70
+ and requirements.txt files, takes care of building and caching of containers and venvs and execution of required ci
71
+ commands. detects and [natively uses](https://github.com/wrmsr/omlish/blob/master/omdev/ci/github/api/v2)
72
+ github-action's caching system. unifies ci execution between local dev and github runners.
73
+
74
+ - **[tools.json](https://github.com/wrmsr/omlish/blob/master/omdev/tools/json)** (cli: `om j`) - a tool for json-like
75
+ data, obviously in the vein of [jq](https://github.com/jqlang/jq) but using the internal
76
+ [jmespath](https://github.com/wrmsr/omlish/blob/master/omlish/specs/jmespath) engine. supports
77
+ [true streaming](https://github.com/wrmsr/omlish/blob/master/omlish/formats/json/stream) json input and output, as
78
+ well as [various other](https://github.com/wrmsr/omlish/blob/master/tools/json/formats.py) non-streaming input
79
+ formats.
80
+
81
+ - **[tools.git](https://github.com/wrmsr/omlish/blob/master/omdev/tools/git)** (cli: `om git`) - a tool for various lazy
82
+ git operations, including the one that (poorly) writes all of these commit messages.
83
+
84
+ # Amalgamation
85
+
86
+ Amalgamation is the process of stitching together multiple python source files into a single self-contained python
87
+ script. ['lite'](https://github.com/wrmsr/omlish/blob/master/omlish#lite-code) code is written in a style conducive to
88
+ this.
89
+
90
+ # Local storage
91
+
92
+ Some of this code, when asked, will store things on the local filesystem. The only directories used (outside of ones
93
+ explicitly specified as command or function arguments) are managed in
94
+ [home.paths](https://github.com/wrmsr/omlish/blob/master/omdev/home/paths.py), and are the following:
95
+
96
+ - `$OMLISH_HOME`, default of `~/.omlish` - persistent things like config and state.
97
+ - `$OMLISH_CACHE`, default of `~/.cache/omlish` - used for things like the local ci cache and
98
+ [various other](https://github.com/search?q=repo%3Awrmsr%2Fomlish+%22dcache.%22&type=code) cached data.
@@ -315,9 +315,9 @@ omdev/tools/jsonview/resources/jsonview.js,sha256=faDvXDOXKvEvjOuIlz4D3F2ReQXb_b
315
315
  omdev/tools/pawk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
316
316
  omdev/tools/pawk/__main__.py,sha256=VCqeRVnqT1RPEoIrqHFSu4PXVMg4YEgF4qCQm90-eRI,66
317
317
  omdev/tools/pawk/pawk.py,sha256=ao5mdrpiSU4AZ8mBozoEaV3UVlmVTnRG9wD9XP70MZE,11429
318
- omdev-0.0.0.dev380.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
319
- omdev-0.0.0.dev380.dist-info/METADATA,sha256=-IhqmDcE0cysCVtRNmu33b-x3Z_H19rB1wZd6O3J0dM,1674
320
- omdev-0.0.0.dev380.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
321
- omdev-0.0.0.dev380.dist-info/entry_points.txt,sha256=dHLXFmq5D9B8qUyhRtFqTGWGxlbx3t5ejedjrnXNYLU,33
322
- omdev-0.0.0.dev380.dist-info/top_level.txt,sha256=1nr7j30fEWgLYHW3lGR9pkdHkb7knv1U1ES1XRNVQ6k,6
323
- omdev-0.0.0.dev380.dist-info/RECORD,,
318
+ omdev-0.0.0.dev382.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
319
+ omdev-0.0.0.dev382.dist-info/METADATA,sha256=pxbCAoaIhAS7FGkrSN4hC3zfCr0UZk63Ny8UF3gnm9c,4995
320
+ omdev-0.0.0.dev382.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
321
+ omdev-0.0.0.dev382.dist-info/entry_points.txt,sha256=dHLXFmq5D9B8qUyhRtFqTGWGxlbx3t5ejedjrnXNYLU,33
322
+ omdev-0.0.0.dev382.dist-info/top_level.txt,sha256=1nr7j30fEWgLYHW3lGR9pkdHkb7knv1U1ES1XRNVQ6k,6
323
+ omdev-0.0.0.dev382.dist-info/RECORD,,
@@ -1,46 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: omdev
3
- Version: 0.0.0.dev380
4
- Summary: omdev
5
- Author: wrmsr
6
- License: BSD-3-Clause
7
- Project-URL: source, https://github.com/wrmsr/omlish
8
- Classifier: License :: OSI Approved :: BSD License
9
- Classifier: Development Status :: 2 - Pre-Alpha
10
- Classifier: Intended Audience :: Developers
11
- Classifier: Operating System :: OS Independent
12
- Classifier: Operating System :: POSIX
13
- Requires-Python: >=3.13
14
- License-File: LICENSE
15
- Requires-Dist: omlish==0.0.0.dev380
16
- Provides-Extra: all
17
- Requires-Dist: black~=25.1; extra == "all"
18
- Requires-Dist: pycparser~=2.22; extra == "all"
19
- Requires-Dist: pcpp~=1.30; extra == "all"
20
- Requires-Dist: docutils~=0.22; extra == "all"
21
- Requires-Dist: markdown-it-py~=3.0; extra == "all"
22
- Requires-Dist: mdit-py-plugins~=0.4; extra == "all"
23
- Requires-Dist: pygments~=2.19; extra == "all"
24
- Requires-Dist: mypy~=1.17; extra == "all"
25
- Requires-Dist: gprof2dot~=2025.4; extra == "all"
26
- Requires-Dist: prompt-toolkit~=3.0; extra == "all"
27
- Requires-Dist: segno~=1.6; extra == "all"
28
- Provides-Extra: black
29
- Requires-Dist: black~=25.1; extra == "black"
30
- Provides-Extra: c
31
- Requires-Dist: pycparser~=2.22; extra == "c"
32
- Requires-Dist: pcpp~=1.30; extra == "c"
33
- Provides-Extra: doc
34
- Requires-Dist: docutils~=0.22; extra == "doc"
35
- Requires-Dist: markdown-it-py~=3.0; extra == "doc"
36
- Requires-Dist: mdit-py-plugins~=0.4; extra == "doc"
37
- Requires-Dist: pygments~=2.19; extra == "doc"
38
- Provides-Extra: mypy
39
- Requires-Dist: mypy~=1.17; extra == "mypy"
40
- Provides-Extra: prof
41
- Requires-Dist: gprof2dot~=2025.4; extra == "prof"
42
- Provides-Extra: ptk
43
- Requires-Dist: prompt-toolkit~=3.0; extra == "ptk"
44
- Provides-Extra: qr
45
- Requires-Dist: segno~=1.6; extra == "qr"
46
- Dynamic: license-file