omdev-cli 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.
@@ -0,0 +1,70 @@
1
+ Metadata-Version: 2.4
2
+ Name: omdev-cli
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: omdev==0.0.0.dev383
18
+ Dynamic: license-file
19
+
20
+ # Overview
21
+
22
+ Development utilities and support code.
23
+
24
+ # Notable packages
25
+
26
+ - **[cli](https://github.com/wrmsr/omlish/blob/master/omdev/cli)** - The codebase's all-in-one CLI. This is not
27
+ installed as an entrypoint / command when this package is itself installed - that is separated into the `omdev-cli`
28
+ installable package so as to not pollute users' bin/ directories when depping this lib for its utility code.
29
+
30
+ - **[amalg](https://github.com/wrmsr/omlish/blob/master/omdev/amalg)** - The [amalgamator](#amalgamation).
31
+
32
+ - **[pyproject](https://github.com/wrmsr/omlish/blob/master/omdev/pyproject)**
33
+ ([amalg](https://github.com/wrmsr/omlish/blob/master/omdev/scripts/pyproject.py)) - python project management tool.
34
+ wrangles but does not replace tools like venv, pip, setuptools, and uv. does things like sets up venvs, generates
35
+ [`.pkg`](https://github.com/wrmsr/omlish/blob/master/.pkg) directories and their `pyproject.toml`'s (from their
36
+ `__about__.py`'s), and packages them. this should grow to eat more and more of the Makefile. as it is amalgamated it
37
+ requires no installation and can just be dropped into other projects / repos.
38
+
39
+ - **[ci](https://github.com/wrmsr/omlish/blob/master/omdev/ci)**
40
+ ([amalg](https://github.com/wrmsr/omlish/blob/master/omdev/scripts/ci.py)) - ci runner. given a
41
+ [`compose.yml`](https://github.com/wrmsr/omlish/blob/master/docker/compose.yml)
42
+ and requirements.txt files, takes care of building and caching of containers and venvs and execution of required ci
43
+ commands. detects and [natively uses](https://github.com/wrmsr/omlish/blob/master/omdev/ci/github/api/v2)
44
+ github-action's caching system. unifies ci execution between local dev and github runners.
45
+
46
+ - **[tools.json](https://github.com/wrmsr/omlish/blob/master/omdev/tools/json)** (cli: `om j`) - a tool for json-like
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
50
+ well as [various other](https://github.com/wrmsr/omlish/blob/master/tools/json/formats.py) non-streaming input
51
+ formats.
52
+
53
+ - **[tools.git](https://github.com/wrmsr/omlish/blob/master/omdev/tools/git)** (cli: `om git`) - a tool for various lazy
54
+ git operations, including the one that (poorly) writes all of these commit messages.
55
+
56
+ # Amalgamation
57
+
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
60
+ this.
61
+
62
+ # Local storage
63
+
64
+ Some of this code, when asked, will store things on the local filesystem. The only directories used (outside of ones
65
+ explicitly specified as command or function arguments) are managed in
66
+ [home.paths](https://github.com/wrmsr/omlish/blob/master/omdev/home/paths.py), and are the following:
67
+
68
+ - `$OMLISH_HOME`, default of `~/.omlish` - persistent things like config and state.
69
+ - `$OMLISH_CACHE`, default of `~/.cache/omlish` - used for things like the local ci cache and
70
+ [various other](https://github.com/search?q=repo%3Awrmsr%2Fomlish+%22dcache.%22&type=code) cached data.
@@ -0,0 +1,6 @@
1
+ omdev_cli-0.0.0.dev383.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
2
+ omdev_cli-0.0.0.dev383.dist-info/METADATA,sha256=M24L5isMdwXivkSx3ZvJlGsfpuLPyx8_cdKcIJpm_54,3915
3
+ omdev_cli-0.0.0.dev383.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
+ omdev_cli-0.0.0.dev383.dist-info/entry_points.txt,sha256=lEP4ovirDvYMZbYsvpZqppNxT-ChTDoRgt5VItJB1c0,44
5
+ omdev_cli-0.0.0.dev383.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
6
+ omdev_cli-0.0.0.dev383.dist-info/RECORD,,
@@ -1,16 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: omdev-cli
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: omdev==0.0.0.dev381
16
- Dynamic: license-file
@@ -1,6 +0,0 @@
1
- omdev_cli-0.0.0.dev381.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
2
- omdev_cli-0.0.0.dev381.dist-info/METADATA,sha256=cQTlcYOkGJQbyY8WyfMy-ryQbZIrnMx6PsKLdqtjfnc,495
3
- omdev_cli-0.0.0.dev381.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
- omdev_cli-0.0.0.dev381.dist-info/entry_points.txt,sha256=lEP4ovirDvYMZbYsvpZqppNxT-ChTDoRgt5VItJB1c0,44
5
- omdev_cli-0.0.0.dev381.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
6
- omdev_cli-0.0.0.dev381.dist-info/RECORD,,