omextra 0.0.0.dev423__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.
- omextra-0.0.0.dev423/LICENSE +21 -0
- omextra-0.0.0.dev423/MANIFEST.in +1 -0
- omextra-0.0.0.dev423/PKG-INFO +74 -0
- omextra-0.0.0.dev423/README.md +54 -0
- omextra-0.0.0.dev423/omextra/.manifests.json +1 -0
- omextra-0.0.0.dev423/omextra/__about__.py +27 -0
- omextra-0.0.0.dev423/omextra/__init__.py +0 -0
- omextra-0.0.0.dev423/omextra.egg-info/PKG-INFO +74 -0
- omextra-0.0.0.dev423/omextra.egg-info/SOURCES.txt +13 -0
- omextra-0.0.0.dev423/omextra.egg-info/dependency_links.txt +1 -0
- omextra-0.0.0.dev423/omextra.egg-info/entry_points.txt +2 -0
- omextra-0.0.0.dev423/omextra.egg-info/requires.txt +2 -0
- omextra-0.0.0.dev423/omextra.egg-info/top_level.txt +1 -0
- omextra-0.0.0.dev423/pyproject.toml +58 -0
- omextra-0.0.0.dev423/setup.cfg +4 -0
@@ -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
|
+
global-exclude **/conftest.py
|
@@ -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,54 @@
|
|
1
|
+
# Overview
|
2
|
+
|
3
|
+
My python monorepo, the successor to my previous one `omnibus`(... 'ish').
|
4
|
+
|
5
|
+
The core libraries have no required dependencies besides each other, but there are numerous optional ones - see their
|
6
|
+
respective `pyproject.toml` files for details.
|
7
|
+
|
8
|
+
Standard code is written for python 3.13+, '[lite](https://github.com/wrmsr/omlish/blob/master/omlish#lite-code)' code
|
9
|
+
for 3.8+.
|
10
|
+
|
11
|
+
# Core libraries
|
12
|
+
|
13
|
+
- **[omlish](https://github.com/wrmsr/omlish/blob/master/omlish#readme)** - Core foundational code
|
14
|
+
- **[omdev](https://github.com/wrmsr/omlish/blob/master/omdev#readme)** - Development utilities
|
15
|
+
- **[ominfra](https://github.com/wrmsr/omlish/blob/master/ominfra#readme)** - Infrastructure and cloud code
|
16
|
+
- **[ommlds](https://github.com/wrmsr/omlish/blob/master/ommlds#readme)** - ML / data science code
|
17
|
+
- **[omserv](https://github.com/wrmsr/omlish/blob/master/omserv#readme)** - Request serving code
|
18
|
+
|
19
|
+
# Installation
|
20
|
+
|
21
|
+
Core libraries installable by name from pypi:
|
22
|
+
|
23
|
+
```bash
|
24
|
+
pip install omlish
|
25
|
+
```
|
26
|
+
|
27
|
+
Or directly from git via:
|
28
|
+
|
29
|
+
```bash
|
30
|
+
pip install 'git+https://github.com/wrmsr/omlish@master#subdirectory=.pkg/omlish'
|
31
|
+
```
|
32
|
+
|
33
|
+
The CLI is installable through uvx or pipx via:
|
34
|
+
|
35
|
+
```bash
|
36
|
+
curl -LsSf 'https://raw.githubusercontent.com/wrmsr/omlish/master/omdev/cli/install.py' | python3 -
|
37
|
+
```
|
38
|
+
|
39
|
+
Additional deps to be injected may be appended to the command.
|
40
|
+
|
41
|
+
Once installed the CLI can be updated via:
|
42
|
+
|
43
|
+
```bash
|
44
|
+
om cli reinstall
|
45
|
+
```
|
46
|
+
|
47
|
+
# Project structure
|
48
|
+
|
49
|
+
The structure of the repo is managed by the internal
|
50
|
+
[pyproject](https://github.com/wrmsr/omlish/blob/master/omdev/pyproject) tool, which generates
|
51
|
+
[`.pkg`](https://github.com/wrmsr/omlish/blob/master/.pkg) directories (which map to published packages) from each
|
52
|
+
library's [`__about__.py`](https://github.com/wrmsr/omlish/blob/master/omlish/__about__.py). The root-level
|
53
|
+
[`pyproject.toml`](https://github.com/wrmsr/omlish/blob/master/pyproject.toml) does not actually contain a PEP-621
|
54
|
+
project.
|
@@ -0,0 +1 @@
|
|
1
|
+
[]
|
@@ -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
|
+
}
|
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,13 @@
|
|
1
|
+
LICENSE
|
2
|
+
MANIFEST.in
|
3
|
+
README.md
|
4
|
+
pyproject.toml
|
5
|
+
omextra/.manifests.json
|
6
|
+
omextra/__about__.py
|
7
|
+
omextra/__init__.py
|
8
|
+
omextra.egg-info/PKG-INFO
|
9
|
+
omextra.egg-info/SOURCES.txt
|
10
|
+
omextra.egg-info/dependency_links.txt
|
11
|
+
omextra.egg-info/entry_points.txt
|
12
|
+
omextra.egg-info/requires.txt
|
13
|
+
omextra.egg-info/top_level.txt
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
omextra
|
@@ -0,0 +1,58 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = [
|
3
|
+
'setuptools',
|
4
|
+
]
|
5
|
+
build-backend = 'setuptools.build_meta'
|
6
|
+
|
7
|
+
[project]
|
8
|
+
name = 'omextra'
|
9
|
+
authors = [
|
10
|
+
{name = 'wrmsr'},
|
11
|
+
]
|
12
|
+
urls = {source = 'https://github.com/wrmsr/omlish'}
|
13
|
+
license = 'BSD-3-Clause'
|
14
|
+
readme = 'README.md'
|
15
|
+
requires-python = '>=3.13'
|
16
|
+
version = '0.0.0.dev423'
|
17
|
+
classifiers = [
|
18
|
+
'Development Status :: 2 - Pre-Alpha',
|
19
|
+
'Intended Audience :: Developers',
|
20
|
+
'Operating System :: OS Independent',
|
21
|
+
'Operating System :: POSIX',
|
22
|
+
'Programming Language :: Python :: 3',
|
23
|
+
'Programming Language :: Python :: 3.13',
|
24
|
+
]
|
25
|
+
description = 'omextra'
|
26
|
+
dependencies = [
|
27
|
+
'omdev == 0.0.0.dev423',
|
28
|
+
'omlish == 0.0.0.dev423',
|
29
|
+
]
|
30
|
+
|
31
|
+
[project.optional-dependencies]
|
32
|
+
|
33
|
+
[project.entry-points]
|
34
|
+
'omlish.manifests' = {omextra = 'omextra'}
|
35
|
+
|
36
|
+
[tool.setuptools]
|
37
|
+
|
38
|
+
[tool.setuptools.packages.find]
|
39
|
+
include = [
|
40
|
+
'omextra',
|
41
|
+
'omextra.*',
|
42
|
+
]
|
43
|
+
exclude = [
|
44
|
+
'*.tests',
|
45
|
+
'*.tests.*',
|
46
|
+
]
|
47
|
+
|
48
|
+
[tool.setuptools.package-data]
|
49
|
+
'*' = [
|
50
|
+
'*.c',
|
51
|
+
'*.cc',
|
52
|
+
'*.cu',
|
53
|
+
'*.g4',
|
54
|
+
'*.h',
|
55
|
+
'.manifests.json',
|
56
|
+
'LICENSE',
|
57
|
+
'LICENSE.txt',
|
58
|
+
]
|