omdev-cext 0.0.0.dev281__tar.gz → 0.0.0.dev501__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.
Potentially problematic release.
This version of omdev-cext might be problematic. Click here for more details.
- omdev_cext-0.0.0.dev501/PKG-INFO +70 -0
- omdev_cext-0.0.0.dev501/README.md +51 -0
- {omdev_cext-0.0.0.dev281 → omdev_cext-0.0.0.dev501}/omdev/cexts/_boilerplate.cc +2 -3
- omdev_cext-0.0.0.dev501/omdev_cext.egg-info/PKG-INFO +70 -0
- {omdev_cext-0.0.0.dev281 → omdev_cext-0.0.0.dev501}/omdev_cext.egg-info/SOURCES.txt +1 -1
- omdev_cext-0.0.0.dev501/omdev_cext.egg-info/requires.txt +1 -0
- {omdev_cext-0.0.0.dev281 → omdev_cext-0.0.0.dev501}/pyproject.toml +7 -5
- {omdev_cext-0.0.0.dev281 → omdev_cext-0.0.0.dev501}/setup.py +1 -1
- omdev_cext-0.0.0.dev281/PKG-INFO +0 -16
- omdev_cext-0.0.0.dev281/README.rst +0 -38
- omdev_cext-0.0.0.dev281/omdev_cext.egg-info/PKG-INFO +0 -16
- omdev_cext-0.0.0.dev281/omdev_cext.egg-info/requires.txt +0 -1
- {omdev_cext-0.0.0.dev281 → omdev_cext-0.0.0.dev501}/LICENSE +0 -0
- {omdev_cext-0.0.0.dev281 → omdev_cext-0.0.0.dev501}/omdev_cext.egg-info/dependency_links.txt +0 -0
- {omdev_cext-0.0.0.dev281 → omdev_cext-0.0.0.dev501}/omdev_cext.egg-info/top_level.txt +0 -0
- {omdev_cext-0.0.0.dev281 → omdev_cext-0.0.0.dev501}/setup.cfg +0 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: omdev-cext
|
|
3
|
+
Version: 0.0.0.dev501
|
|
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.dev501
|
|
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/omdev/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,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/omdev/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.
|
|
@@ -54,9 +54,8 @@ static PyMethodDef boilerplate_methods[] = {
|
|
|
54
54
|
|
|
55
55
|
static struct PyModuleDef_Slot boilerplate_slots[] = {
|
|
56
56
|
{Py_mod_exec, (void *) boilerplate_exec},
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
// #endif
|
|
57
|
+
{Py_mod_gil, Py_MOD_GIL_NOT_USED},
|
|
58
|
+
{Py_mod_multiple_interpreters, Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED},
|
|
60
59
|
{0, NULL}
|
|
61
60
|
};
|
|
62
61
|
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: omdev-cext
|
|
3
|
+
Version: 0.0.0.dev501
|
|
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.dev501
|
|
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/omdev/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 @@
|
|
|
1
|
+
omdev==0.0.0.dev501
|
|
@@ -10,19 +10,21 @@ authors = [
|
|
|
10
10
|
{name = 'wrmsr'},
|
|
11
11
|
]
|
|
12
12
|
urls = {source = 'https://github.com/wrmsr/omlish'}
|
|
13
|
-
license =
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
license = 'BSD-3-Clause'
|
|
14
|
+
readme = 'README.md'
|
|
15
|
+
requires-python = '>=3.13'
|
|
16
|
+
version = '0.0.0.dev501'
|
|
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',
|
|
21
21
|
'Operating System :: POSIX',
|
|
22
|
+
'Programming Language :: Python :: 3',
|
|
23
|
+
'Programming Language :: Python :: 3.13',
|
|
22
24
|
]
|
|
23
25
|
description = 'omdev'
|
|
24
26
|
dependencies = [
|
|
25
|
-
'omdev == 0.0.0.
|
|
27
|
+
'omdev == 0.0.0.dev501',
|
|
26
28
|
]
|
|
27
29
|
|
|
28
30
|
[tool.setuptools]
|
omdev_cext-0.0.0.dev281/PKG-INFO
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: omdev-cext
|
|
3
|
-
Version: 0.0.0.dev281
|
|
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.12
|
|
14
|
-
License-File: LICENSE
|
|
15
|
-
Requires-Dist: omdev==0.0.0.dev281
|
|
16
|
-
Dynamic: license-file
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
It's like my previous python monorepo-ey thing `omnibus
|
|
2
|
-
<https://github.com/wrmsr/omnibus/tree/wrmsr_exp_split>`_... ish.
|
|
3
|
-
|
|
4
|
-
Core packages begin with ``om``, scratch app is in ``app``, temp / dump code is in ``x``.
|
|
5
|
-
|
|
6
|
-
----
|
|
7
|
-
|
|
8
|
-
The core packages are:
|
|
9
|
-
|
|
10
|
-
omlish
|
|
11
|
-
core foundational code
|
|
12
|
-
omdev
|
|
13
|
-
development utilities
|
|
14
|
-
omserv
|
|
15
|
-
production web server
|
|
16
|
-
ominfra
|
|
17
|
-
infrastructure and cloud code
|
|
18
|
-
ommlx
|
|
19
|
-
ml / ai code
|
|
20
|
-
|
|
21
|
-
----
|
|
22
|
-
|
|
23
|
-
Core packages installable from pypi, or from git via:
|
|
24
|
-
|
|
25
|
-
.. code-block::
|
|
26
|
-
|
|
27
|
-
pip install 'git+https://github.com/wrmsr/omlish@master#subdirectory=.pkg/<pkg>'
|
|
28
|
-
|
|
29
|
-
Core packages have no required dependencies, but numerous optional ones - see their respective ``pyproject.toml`` files
|
|
30
|
-
for details.
|
|
31
|
-
|
|
32
|
-
The cli is installable through uvx or pipx via:
|
|
33
|
-
|
|
34
|
-
.. code-block::
|
|
35
|
-
|
|
36
|
-
curl -LsSf https://raw.githubusercontent.com/wrmsr/omlish/master/omdev/cli/install.py | python3 -
|
|
37
|
-
|
|
38
|
-
Additional deps to be injected may be appended to the command.
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: omdev-cext
|
|
3
|
-
Version: 0.0.0.dev281
|
|
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.12
|
|
14
|
-
License-File: LICENSE
|
|
15
|
-
Requires-Dist: omdev==0.0.0.dev281
|
|
16
|
-
Dynamic: license-file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
omdev==0.0.0.dev281
|
|
File without changes
|
{omdev_cext-0.0.0.dev281 → omdev_cext-0.0.0.dev501}/omdev_cext.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|