omdev-cli 0.0.0.dev380__tar.gz → 0.0.0.dev382__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.
@@ -0,0 +1,68 @@
1
+ Metadata-Version: 2.4
2
+ Name: omdev-cli
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: omdev==0.0.0.dev382
16
+ Dynamic: license-file
17
+
18
+ # Overview
19
+
20
+ Development utilities and support code.
21
+
22
+ # Notable packages
23
+
24
+ - **[cli](https://github.com/wrmsr/omlish/blob/master/omdev/cli)** - The codebase's all-in-one CLI. This is not
25
+ installed as an entrypoint / command when this package is itself installed - that is separated into the `omdev-cli`
26
+ installable package so as to not pollute users' bin/ directories when depping this lib for its utility code.
27
+
28
+ - **[amalg](https://github.com/wrmsr/omlish/blob/master/omdev/amalg)** - The [amalgamator](#amalgamation).
29
+
30
+ - **[pyproject](https://github.com/wrmsr/omlish/blob/master/omdev/pyproject)**
31
+ ([amalg](https://github.com/wrmsr/omlish/blob/master/omdev/scripts/pyproject.py)) - python project management tool.
32
+ wrangles but does not replace tools like venv, pip, setuptools, and uv. does things like sets up venvs, generates
33
+ [`.pkg`](https://github.com/wrmsr/omlish/blob/master/.pkg) directories and their `pyproject.toml`'s (from their
34
+ `__about__.py`'s), and packages them. this should grow to eat more and more of the Makefile. as it is amalgamated it
35
+ requires no installation and can just be dropped into other projects / repos.
36
+
37
+ - **[ci](https://github.com/wrmsr/omlish/blob/master/omdev/ci)**
38
+ ([amalg](https://github.com/wrmsr/omlish/blob/master/omdev/scripts/ci.py)) - ci runner. given a
39
+ [`compose.yml`](https://github.com/wrmsr/omlish/blob/master/docker/compose.yml)
40
+ and requirements.txt files, takes care of building and caching of containers and venvs and execution of required ci
41
+ commands. detects and [natively uses](https://github.com/wrmsr/omlish/blob/master/omdev/ci/github/api/v2)
42
+ github-action's caching system. unifies ci execution between local dev and github runners.
43
+
44
+ - **[tools.json](https://github.com/wrmsr/omlish/blob/master/omdev/tools/json)** (cli: `om j`) - a tool for json-like
45
+ data, obviously in the vein of [jq](https://github.com/jqlang/jq) but using the internal
46
+ [jmespath](https://github.com/wrmsr/omlish/blob/master/omlish/specs/jmespath) engine. supports
47
+ [true streaming](https://github.com/wrmsr/omlish/blob/master/omlish/formats/json/stream) json input and output, as
48
+ well as [various other](https://github.com/wrmsr/omlish/blob/master/tools/json/formats.py) non-streaming input
49
+ formats.
50
+
51
+ - **[tools.git](https://github.com/wrmsr/omlish/blob/master/omdev/tools/git)** (cli: `om git`) - a tool for various lazy
52
+ git operations, including the one that (poorly) writes all of these commit messages.
53
+
54
+ # Amalgamation
55
+
56
+ Amalgamation is the process of stitching together multiple python source files into a single self-contained python
57
+ script. ['lite'](https://github.com/wrmsr/omlish/blob/master/omlish#lite-code) code is written in a style conducive to
58
+ this.
59
+
60
+ # Local storage
61
+
62
+ Some of this code, when asked, will store things on the local filesystem. The only directories used (outside of ones
63
+ explicitly specified as command or function arguments) are managed in
64
+ [home.paths](https://github.com/wrmsr/omlish/blob/master/omdev/home/paths.py), and are the following:
65
+
66
+ - `$OMLISH_HOME`, default of `~/.omlish` - persistent things like config and state.
67
+ - `$OMLISH_CACHE`, default of `~/.cache/omlish` - used for things like the local ci cache and
68
+ [various other](https://github.com/search?q=repo%3Awrmsr%2Fomlish+%22dcache.%22&type=code) cached data.
@@ -0,0 +1,51 @@
1
+ # Overview
2
+
3
+ Development utilities and support code.
4
+
5
+ # Notable packages
6
+
7
+ - **[cli](https://github.com/wrmsr/omlish/blob/master/omdev/cli)** - The codebase's all-in-one CLI. This is not
8
+ installed as an entrypoint / command when this package is itself installed - that is separated into the `omdev-cli`
9
+ installable package so as to not pollute users' bin/ directories when depping this lib for its utility code.
10
+
11
+ - **[amalg](https://github.com/wrmsr/omlish/blob/master/omdev/amalg)** - The [amalgamator](#amalgamation).
12
+
13
+ - **[pyproject](https://github.com/wrmsr/omlish/blob/master/omdev/pyproject)**
14
+ ([amalg](https://github.com/wrmsr/omlish/blob/master/omdev/scripts/pyproject.py)) - python project management tool.
15
+ wrangles but does not replace tools like venv, pip, setuptools, and uv. does things like sets up venvs, generates
16
+ [`.pkg`](https://github.com/wrmsr/omlish/blob/master/.pkg) directories and their `pyproject.toml`'s (from their
17
+ `__about__.py`'s), and packages them. this should grow to eat more and more of the Makefile. as it is amalgamated it
18
+ requires no installation and can just be dropped into other projects / repos.
19
+
20
+ - **[ci](https://github.com/wrmsr/omlish/blob/master/omdev/ci)**
21
+ ([amalg](https://github.com/wrmsr/omlish/blob/master/omdev/scripts/ci.py)) - ci runner. given a
22
+ [`compose.yml`](https://github.com/wrmsr/omlish/blob/master/docker/compose.yml)
23
+ and requirements.txt files, takes care of building and caching of containers and venvs and execution of required ci
24
+ commands. detects and [natively uses](https://github.com/wrmsr/omlish/blob/master/omdev/ci/github/api/v2)
25
+ github-action's caching system. unifies ci execution between local dev and github runners.
26
+
27
+ - **[tools.json](https://github.com/wrmsr/omlish/blob/master/omdev/tools/json)** (cli: `om j`) - a tool for json-like
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
31
+ well as [various other](https://github.com/wrmsr/omlish/blob/master/tools/json/formats.py) non-streaming input
32
+ formats.
33
+
34
+ - **[tools.git](https://github.com/wrmsr/omlish/blob/master/omdev/tools/git)** (cli: `om git`) - a tool for various lazy
35
+ git operations, including the one that (poorly) writes all of these commit messages.
36
+
37
+ # Amalgamation
38
+
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
41
+ this.
42
+
43
+ # Local storage
44
+
45
+ Some of this code, when asked, will store things on the local filesystem. The only directories used (outside of ones
46
+ explicitly specified as command or function arguments) are managed in
47
+ [home.paths](https://github.com/wrmsr/omlish/blob/master/omdev/home/paths.py), and are the following:
48
+
49
+ - `$OMLISH_HOME`, default of `~/.omlish` - persistent things like config and state.
50
+ - `$OMLISH_CACHE`, default of `~/.cache/omlish` - used for things like the local ci cache and
51
+ [various other](https://github.com/search?q=repo%3Awrmsr%2Fomlish+%22dcache.%22&type=code) cached data.
@@ -0,0 +1,68 @@
1
+ Metadata-Version: 2.4
2
+ Name: omdev-cli
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: omdev==0.0.0.dev382
16
+ Dynamic: license-file
17
+
18
+ # Overview
19
+
20
+ Development utilities and support code.
21
+
22
+ # Notable packages
23
+
24
+ - **[cli](https://github.com/wrmsr/omlish/blob/master/omdev/cli)** - The codebase's all-in-one CLI. This is not
25
+ installed as an entrypoint / command when this package is itself installed - that is separated into the `omdev-cli`
26
+ installable package so as to not pollute users' bin/ directories when depping this lib for its utility code.
27
+
28
+ - **[amalg](https://github.com/wrmsr/omlish/blob/master/omdev/amalg)** - The [amalgamator](#amalgamation).
29
+
30
+ - **[pyproject](https://github.com/wrmsr/omlish/blob/master/omdev/pyproject)**
31
+ ([amalg](https://github.com/wrmsr/omlish/blob/master/omdev/scripts/pyproject.py)) - python project management tool.
32
+ wrangles but does not replace tools like venv, pip, setuptools, and uv. does things like sets up venvs, generates
33
+ [`.pkg`](https://github.com/wrmsr/omlish/blob/master/.pkg) directories and their `pyproject.toml`'s (from their
34
+ `__about__.py`'s), and packages them. this should grow to eat more and more of the Makefile. as it is amalgamated it
35
+ requires no installation and can just be dropped into other projects / repos.
36
+
37
+ - **[ci](https://github.com/wrmsr/omlish/blob/master/omdev/ci)**
38
+ ([amalg](https://github.com/wrmsr/omlish/blob/master/omdev/scripts/ci.py)) - ci runner. given a
39
+ [`compose.yml`](https://github.com/wrmsr/omlish/blob/master/docker/compose.yml)
40
+ and requirements.txt files, takes care of building and caching of containers and venvs and execution of required ci
41
+ commands. detects and [natively uses](https://github.com/wrmsr/omlish/blob/master/omdev/ci/github/api/v2)
42
+ github-action's caching system. unifies ci execution between local dev and github runners.
43
+
44
+ - **[tools.json](https://github.com/wrmsr/omlish/blob/master/omdev/tools/json)** (cli: `om j`) - a tool for json-like
45
+ data, obviously in the vein of [jq](https://github.com/jqlang/jq) but using the internal
46
+ [jmespath](https://github.com/wrmsr/omlish/blob/master/omlish/specs/jmespath) engine. supports
47
+ [true streaming](https://github.com/wrmsr/omlish/blob/master/omlish/formats/json/stream) json input and output, as
48
+ well as [various other](https://github.com/wrmsr/omlish/blob/master/tools/json/formats.py) non-streaming input
49
+ formats.
50
+
51
+ - **[tools.git](https://github.com/wrmsr/omlish/blob/master/omdev/tools/git)** (cli: `om git`) - a tool for various lazy
52
+ git operations, including the one that (poorly) writes all of these commit messages.
53
+
54
+ # Amalgamation
55
+
56
+ Amalgamation is the process of stitching together multiple python source files into a single self-contained python
57
+ script. ['lite'](https://github.com/wrmsr/omlish/blob/master/omlish#lite-code) code is written in a style conducive to
58
+ this.
59
+
60
+ # Local storage
61
+
62
+ Some of this code, when asked, will store things on the local filesystem. The only directories used (outside of ones
63
+ explicitly specified as command or function arguments) are managed in
64
+ [home.paths](https://github.com/wrmsr/omlish/blob/master/omdev/home/paths.py), and are the following:
65
+
66
+ - `$OMLISH_HOME`, default of `~/.omlish` - persistent things like config and state.
67
+ - `$OMLISH_CACHE`, default of `~/.cache/omlish` - used for things like the local ci cache and
68
+ [various other](https://github.com/search?q=repo%3Awrmsr%2Fomlish+%22dcache.%22&type=code) cached data.
@@ -0,0 +1 @@
1
+ omdev==0.0.0.dev382
@@ -10,11 +10,11 @@ authors = [
10
10
  {name = 'wrmsr'},
11
11
  ]
12
12
  urls = {source = 'https://github.com/wrmsr/omlish'}
13
- license = {text = 'BSD-3-Clause'}
13
+ license = 'BSD-3-Clause'
14
+ readme = 'README.md'
14
15
  requires-python = '>=3.13'
15
- version = '0.0.0.dev380'
16
+ version = '0.0.0.dev382'
16
17
  classifiers = [
17
- 'License :: OSI Approved :: BSD License',
18
18
  'Development Status :: 2 - Pre-Alpha',
19
19
  'Intended Audience :: Developers',
20
20
  'Operating System :: OS Independent',
@@ -22,7 +22,7 @@ classifiers = [
22
22
  ]
23
23
  description = 'omdev'
24
24
  dependencies = [
25
- 'omdev == 0.0.0.dev380',
25
+ 'omdev == 0.0.0.dev382',
26
26
  ]
27
27
 
28
28
  [project.scripts]
@@ -1,16 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: omdev-cli
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: omdev==0.0.0.dev380
16
- Dynamic: license-file
@@ -1,48 +0,0 @@
1
- # Overview
2
-
3
- Development utilities and support code.
4
-
5
- # Notable packages
6
-
7
- - **[cli](cli)** - The codebase's all-in-one CLI. This is not installed as an entrypoint / command when this package is
8
- itself installed - that is separated into the `omdev-cli` installable package so as to not pollute users' bin/
9
- directories when depping this lib for its utility code.
10
-
11
- - **[amalg](amalg)** - The [amalgamator](#amalgamation).
12
-
13
- - **[pyproject](pyproject)** ([amalg](scripts/pyproject.py)) - python project management tool. wrangles but does not
14
- replace tools like venv, pip, setuptools, and uv. does things like sets up venvs, generates
15
- [`.pkg`](https://github.com/wrmsr/omlish/blob/master/.pkg) directories and their `pyproject.toml`'s (from their
16
- `__about__.py`'s), and packages them. this should grow to eat more and more of the Makefile. as it is amalgamated it
17
- requires no installation and can just be dropped into other projects / repos.
18
-
19
- - **[ci](ci)** ([amalg](scripts/ci.py)) - ci runner. given a
20
- [`compose.yml`](https://github.com/wrmsr/omlish/blob/master/docker/compose.yml) and requirements.txt files, takes care
21
- of building and caching of containers and venvs and execution of required ci commands. detects and
22
- [natively uses](ci/github/api/v2) github-action's caching system. unifies ci execution between local dev and github
23
- runners.
24
-
25
- - **[tools.json](tools/json)** (cli: `om j`) - a tool for json-like data, obviously in the vein of
26
- [jq](https://github.com/jqlang/jq) but using the internal
27
- [jmespath](https://github.com/wrmsr/omlish/tree/master/omlish/specs/jmespath) engine. supports
28
- [true streaming](https://github.com/wrmsr/omlish/blob/master/omlish/formats/json/stream) json input and output, as
29
- well as [various other](tools/json/formats.py) non-streaming input formats.
30
-
31
- - **[tools.git](tools/git)** (cli: `om git`) - a tool for various lazy git operations, including the one that (poorly)
32
- writes all of these commit messages.
33
-
34
- # Amalgamation
35
-
36
- Amalgamation is the process of stitching together multiple python source files into a single self-contained python
37
- script. ['lite'](https://github.com/wrmsr/omlish/blob/master/omlish#lite-code) code is written in a style conducive to
38
- this.
39
-
40
- # Local storage
41
-
42
- Some of this code, when asked, will store things on the local filesystem. The only directories used (outside of ones
43
- explicitly specified as command or function arguments) are managed in [home.paths](home/paths.py), and are the
44
- following:
45
-
46
- - `$OMLISH_HOME`, default of `~/.omlish` - persistent things like config and state.
47
- - `$OMLISH_CACHE`, default of `~/.cache/omlish` - used for things like the local ci cache and
48
- [various other](https://github.com/search?q=repo%3Awrmsr%2Fomlish+%22dcache.%22&type=code) cached data.
@@ -1,16 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: omdev-cli
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: omdev==0.0.0.dev380
16
- Dynamic: license-file
@@ -1 +0,0 @@
1
- omdev==0.0.0.dev380