omdev-cext 0.0.0.dev300__tar.gz → 0.0.0.dev302__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omdev-cext
3
- Version: 0.0.0.dev300
3
+ Version: 0.0.0.dev302
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.dev300
15
+ Requires-Dist: omdev==0.0.0.dev302
16
16
  Dynamic: license-file
@@ -0,0 +1,17 @@
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
+ # Amalgamation
14
+
15
+ Amalgamation is the process of stitching together multiple python source files into a single self-contained python
16
+ script. ['lite'](https://github.com/wrmsr/omlish/blob/master/omlish#lite-code) code is written in a style conducive to
17
+ this.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omdev-cext
3
- Version: 0.0.0.dev300
3
+ Version: 0.0.0.dev302
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.dev300
15
+ Requires-Dist: omdev==0.0.0.dev302
16
16
  Dynamic: license-file
@@ -0,0 +1 @@
1
+ omdev==0.0.0.dev302
@@ -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.dev300'
15
+ version = '0.0.0.dev302'
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.dev300',
25
+ 'omdev == 0.0.0.dev302',
26
26
  ]
27
27
 
28
28
  [tool.setuptools]
@@ -1,31 +0,0 @@
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 +0,0 @@
1
- omdev==0.0.0.dev300