omextra 0.0.0.dev423__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 @@
1
+ []
omextra/__about__.py ADDED
@@ -0,0 +1,27 @@
1
+ from omlish.__about__ import ProjectBase
2
+ from omlish.__about__ import SetuptoolsBase
3
+ from omlish.__about__ import __version__
4
+
5
+
6
+ class Project(ProjectBase):
7
+ name = 'omextra'
8
+ description = 'omextra'
9
+
10
+ dependencies = [
11
+ f'omdev == {__version__}',
12
+ f'omlish == {__version__}',
13
+ ]
14
+
15
+ optional_dependencies: dict = {
16
+ }
17
+
18
+ entry_points = {
19
+ 'omlish.manifests': {name: name},
20
+ }
21
+
22
+
23
+ class Setuptools(SetuptoolsBase):
24
+ find_packages = {
25
+ 'include': [Project.name, f'{Project.name}.*'],
26
+ 'exclude': [*SetuptoolsBase.find_packages['exclude']],
27
+ }
omextra/__init__.py ADDED
File without changes
@@ -0,0 +1,74 @@
1
+ Metadata-Version: 2.4
2
+ Name: omextra
3
+ Version: 0.0.0.dev423
4
+ Summary: omextra
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.dev423
18
+ Requires-Dist: omlish==0.0.0.dev423
19
+ Dynamic: license-file
20
+
21
+ # Overview
22
+
23
+ My python monorepo, the successor to my previous one `omnibus`(... 'ish').
24
+
25
+ The core libraries have no required dependencies besides each other, but there are numerous optional ones - see their
26
+ respective `pyproject.toml` files for details.
27
+
28
+ Standard code is written for python 3.13+, '[lite](https://github.com/wrmsr/omlish/blob/master/omlish#lite-code)' code
29
+ for 3.8+.
30
+
31
+ # Core libraries
32
+
33
+ - **[omlish](https://github.com/wrmsr/omlish/blob/master/omlish#readme)** - Core foundational code
34
+ - **[omdev](https://github.com/wrmsr/omlish/blob/master/omdev#readme)** - Development utilities
35
+ - **[ominfra](https://github.com/wrmsr/omlish/blob/master/ominfra#readme)** - Infrastructure and cloud code
36
+ - **[ommlds](https://github.com/wrmsr/omlish/blob/master/ommlds#readme)** - ML / data science code
37
+ - **[omserv](https://github.com/wrmsr/omlish/blob/master/omserv#readme)** - Request serving code
38
+
39
+ # Installation
40
+
41
+ Core libraries installable by name from pypi:
42
+
43
+ ```bash
44
+ pip install omlish
45
+ ```
46
+
47
+ Or directly from git via:
48
+
49
+ ```bash
50
+ pip install 'git+https://github.com/wrmsr/omlish@master#subdirectory=.pkg/omlish'
51
+ ```
52
+
53
+ The CLI is installable through uvx or pipx via:
54
+
55
+ ```bash
56
+ curl -LsSf 'https://raw.githubusercontent.com/wrmsr/omlish/master/omdev/cli/install.py' | python3 -
57
+ ```
58
+
59
+ Additional deps to be injected may be appended to the command.
60
+
61
+ Once installed the CLI can be updated via:
62
+
63
+ ```bash
64
+ om cli reinstall
65
+ ```
66
+
67
+ # Project structure
68
+
69
+ The structure of the repo is managed by the internal
70
+ [pyproject](https://github.com/wrmsr/omlish/blob/master/omdev/pyproject) tool, which generates
71
+ [`.pkg`](https://github.com/wrmsr/omlish/blob/master/.pkg) directories (which map to published packages) from each
72
+ library's [`__about__.py`](https://github.com/wrmsr/omlish/blob/master/omlish/__about__.py). The root-level
73
+ [`pyproject.toml`](https://github.com/wrmsr/omlish/blob/master/pyproject.toml) does not actually contain a PEP-621
74
+ project.
@@ -0,0 +1,9 @@
1
+ omextra/.manifests.json,sha256=N1F-Xz3GaBn2H1p7uKzhkhKCQV8QVR0t76XD6wmFtXA,3
2
+ omextra/__about__.py,sha256=6443-6KRrwNuG-PICNQpgkMMt91CUQZb6ZvrqyYc8cA,600
3
+ omextra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ omextra-0.0.0.dev423.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
5
+ omextra-0.0.0.dev423.dist-info/METADATA,sha256=731n08wTxwvv6IahZaGGETCJJYEAbuNdtqfDq1pgbmo,2566
6
+ omextra-0.0.0.dev423.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
7
+ omextra-0.0.0.dev423.dist-info/entry_points.txt,sha256=-MFAMks5HgZ60Ore0Wl5lKVKk8z4kf1Ls3WY9E_OlCU,37
8
+ omextra-0.0.0.dev423.dist-info/top_level.txt,sha256=o1nCNRejLMcayDngLuWMWwaeOucz33BXbpuoVvvzjPc,8
9
+ omextra-0.0.0.dev423.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [omlish.manifests]
2
+ omextra = omextra
@@ -0,0 +1,21 @@
1
+ Copyright 2023- wrmsr
2
+
3
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
4
+ following conditions are met:
5
+
6
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
7
+ disclaimer.
8
+
9
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
10
+ disclaimer in the documentation and/or other materials provided with the distribution.
11
+
12
+ 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
13
+ derived from this software without specific prior written permission.
14
+
15
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
16
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
18
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
20
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
21
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1 @@
1
+ omextra