omdev 0.0.0.dev381__py3-none-any.whl → 0.0.0.dev383__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.

Potentially problematic release.


This version of omdev might be problematic. Click here for more details.

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