omdev-cext 0.0.0.dev290__tar.gz → 0.0.0.dev291__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.
- {omdev_cext-0.0.0.dev290/omdev_cext.egg-info → omdev_cext-0.0.0.dev291}/PKG-INFO +2 -2
- omdev_cext-0.0.0.dev291/README.md +31 -0
- {omdev_cext-0.0.0.dev290 → omdev_cext-0.0.0.dev291/omdev_cext.egg-info}/PKG-INFO +2 -2
- {omdev_cext-0.0.0.dev290 → omdev_cext-0.0.0.dev291}/omdev_cext.egg-info/SOURCES.txt +1 -1
- omdev_cext-0.0.0.dev291/omdev_cext.egg-info/requires.txt +1 -0
- {omdev_cext-0.0.0.dev290 → omdev_cext-0.0.0.dev291}/pyproject.toml +2 -2
- omdev_cext-0.0.0.dev290/README.rst +0 -38
- omdev_cext-0.0.0.dev290/omdev_cext.egg-info/requires.txt +0 -1
- {omdev_cext-0.0.0.dev290 → omdev_cext-0.0.0.dev291}/LICENSE +0 -0
- {omdev_cext-0.0.0.dev290 → omdev_cext-0.0.0.dev291}/omdev/cexts/_boilerplate.cc +0 -0
- {omdev_cext-0.0.0.dev290 → omdev_cext-0.0.0.dev291}/omdev_cext.egg-info/dependency_links.txt +0 -0
- {omdev_cext-0.0.0.dev290 → omdev_cext-0.0.0.dev291}/omdev_cext.egg-info/top_level.txt +0 -0
- {omdev_cext-0.0.0.dev290 → omdev_cext-0.0.0.dev291}/setup.cfg +0 -0
- {omdev_cext-0.0.0.dev290 → omdev_cext-0.0.0.dev291}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: omdev-cext
|
3
|
-
Version: 0.0.0.
|
3
|
+
Version: 0.0.0.dev291
|
4
4
|
Summary: omdev
|
5
5
|
Author: wrmsr
|
6
6
|
License: BSD-3-Clause
|
@@ -12,5 +12,5 @@ Classifier: Operating System :: OS Independent
|
|
12
12
|
Classifier: Operating System :: POSIX
|
13
13
|
Requires-Python: >=3.12
|
14
14
|
License-File: LICENSE
|
15
|
-
Requires-Dist: omdev==0.0.0.
|
15
|
+
Requires-Dist: omdev==0.0.0.dev291
|
16
16
|
Dynamic: license-file
|
@@ -0,0 +1,31 @@
|
|
1
|
+
It's like my previous python monorepo-ey thing [`omnibus`](https://github.com/wrmsr/omnibus/tree/wrmsr_exp_split)... ish.
|
2
|
+
|
3
|
+
Core packages begin with `om`, scratch app is in `app`, temp / dump code is in `x`.
|
4
|
+
|
5
|
+
----
|
6
|
+
|
7
|
+
The core packages are:
|
8
|
+
|
9
|
+
- **omlish**: core foundational code
|
10
|
+
- **omdev**: development utilities
|
11
|
+
- **omserv**: production web server
|
12
|
+
- **ominfra**: infrastructure and cloud code
|
13
|
+
- **ommlx**: ml / ai code
|
14
|
+
|
15
|
+
----
|
16
|
+
|
17
|
+
Core packages installable from pypi, or from git via:
|
18
|
+
|
19
|
+
```bash
|
20
|
+
pip install 'git+https://github.com/wrmsr/omlish@master#subdirectory=.pkg/<pkg>'
|
21
|
+
```
|
22
|
+
|
23
|
+
Core packages have no required dependencies, but numerous optional ones - see their respective `pyproject.toml` files for details.
|
24
|
+
|
25
|
+
The CLI is installable through uvx or pipx via:
|
26
|
+
|
27
|
+
```bash
|
28
|
+
curl -LsSf 'https://raw.githubusercontent.com/wrmsr/omlish/master/omdev/cli/install.py' | python3 -
|
29
|
+
```
|
30
|
+
|
31
|
+
Additional deps to be injected may be appended to the command.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: omdev-cext
|
3
|
-
Version: 0.0.0.
|
3
|
+
Version: 0.0.0.dev291
|
4
4
|
Summary: omdev
|
5
5
|
Author: wrmsr
|
6
6
|
License: BSD-3-Clause
|
@@ -12,5 +12,5 @@ Classifier: Operating System :: OS Independent
|
|
12
12
|
Classifier: Operating System :: POSIX
|
13
13
|
Requires-Python: >=3.12
|
14
14
|
License-File: LICENSE
|
15
|
-
Requires-Dist: omdev==0.0.0.
|
15
|
+
Requires-Dist: omdev==0.0.0.dev291
|
16
16
|
Dynamic: license-file
|
@@ -0,0 +1 @@
|
|
1
|
+
omdev==0.0.0.dev291
|
@@ -12,7 +12,7 @@ authors = [
|
|
12
12
|
urls = {source = 'https://github.com/wrmsr/omlish'}
|
13
13
|
license = {text = 'BSD-3-Clause'}
|
14
14
|
requires-python = '>=3.12'
|
15
|
-
version = '0.0.0.
|
15
|
+
version = '0.0.0.dev291'
|
16
16
|
classifiers = [
|
17
17
|
'License :: OSI Approved :: BSD License',
|
18
18
|
'Development Status :: 2 - Pre-Alpha',
|
@@ -22,7 +22,7 @@ classifiers = [
|
|
22
22
|
]
|
23
23
|
description = 'omdev'
|
24
24
|
dependencies = [
|
25
|
-
'omdev == 0.0.0.
|
25
|
+
'omdev == 0.0.0.dev291',
|
26
26
|
]
|
27
27
|
|
28
28
|
[tool.setuptools]
|
@@ -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 +0,0 @@
|
|
1
|
-
omdev==0.0.0.dev290
|
File without changes
|
File without changes
|
{omdev_cext-0.0.0.dev290 → omdev_cext-0.0.0.dev291}/omdev_cext.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|