omdev-rs 0.0.0.dev476__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.
@@ -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,70 @@
1
+ Metadata-Version: 2.4
2
+ Name: omdev-rs
3
+ Version: 0.0.0.dev476
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.dev476
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.
@@ -0,0 +1,172 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "_boilerplate"
7
+ version = "0.0.1"
8
+ dependencies = [
9
+ "pyo3",
10
+ ]
11
+
12
+ [[package]]
13
+ name = "autocfg"
14
+ version = "1.5.0"
15
+ source = "registry+https://github.com/rust-lang/crates.io-index"
16
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
17
+
18
+ [[package]]
19
+ name = "heck"
20
+ version = "0.5.0"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
23
+
24
+ [[package]]
25
+ name = "indoc"
26
+ version = "2.0.7"
27
+ source = "registry+https://github.com/rust-lang/crates.io-index"
28
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
29
+ dependencies = [
30
+ "rustversion",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "libc"
35
+ version = "0.2.177"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
38
+
39
+ [[package]]
40
+ name = "memoffset"
41
+ version = "0.9.1"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
44
+ dependencies = [
45
+ "autocfg",
46
+ ]
47
+
48
+ [[package]]
49
+ name = "once_cell"
50
+ version = "1.21.3"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
53
+
54
+ [[package]]
55
+ name = "portable-atomic"
56
+ version = "1.11.1"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
59
+
60
+ [[package]]
61
+ name = "proc-macro2"
62
+ version = "1.0.103"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
65
+ dependencies = [
66
+ "unicode-ident",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "pyo3"
71
+ version = "0.27.1"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
74
+ dependencies = [
75
+ "indoc",
76
+ "libc",
77
+ "memoffset",
78
+ "once_cell",
79
+ "portable-atomic",
80
+ "pyo3-build-config",
81
+ "pyo3-ffi",
82
+ "pyo3-macros",
83
+ "unindent",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "pyo3-build-config"
88
+ version = "0.27.1"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
91
+ dependencies = [
92
+ "target-lexicon",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "pyo3-ffi"
97
+ version = "0.27.1"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
100
+ dependencies = [
101
+ "libc",
102
+ "pyo3-build-config",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "pyo3-macros"
107
+ version = "0.27.1"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
110
+ dependencies = [
111
+ "proc-macro2",
112
+ "pyo3-macros-backend",
113
+ "quote",
114
+ "syn",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "pyo3-macros-backend"
119
+ version = "0.27.1"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
122
+ dependencies = [
123
+ "heck",
124
+ "proc-macro2",
125
+ "pyo3-build-config",
126
+ "quote",
127
+ "syn",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "quote"
132
+ version = "1.0.41"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
135
+ dependencies = [
136
+ "proc-macro2",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "rustversion"
141
+ version = "1.0.22"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
144
+
145
+ [[package]]
146
+ name = "syn"
147
+ version = "2.0.108"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
150
+ dependencies = [
151
+ "proc-macro2",
152
+ "quote",
153
+ "unicode-ident",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "target-lexicon"
158
+ version = "0.13.3"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
161
+
162
+ [[package]]
163
+ name = "unicode-ident"
164
+ version = "1.0.22"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
167
+
168
+ [[package]]
169
+ name = "unindent"
170
+ version = "0.2.4"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
@@ -0,0 +1,13 @@
1
+ [package]
2
+ name = "_boilerplate"
3
+ version = "0.0.1"
4
+ edition = "2021"
5
+
6
+ [dependencies]
7
+ pyo3 = "0.27.1"
8
+
9
+ [lib]
10
+ # https://doc.rust-lang.org/cargo/reference/cargo-targets.html#library
11
+ name = "_boilerplate"
12
+ path = "src/lib.rs"
13
+ crate-type = ["cdylib"]
@@ -0,0 +1,11 @@
1
+ use pyo3::prelude::*;
2
+
3
+ #[pymodule]
4
+ mod _boilerplate {
5
+ use pyo3::prelude::*;
6
+
7
+ #[pyfunction]
8
+ fn sum_as_string(a: usize, b: usize) -> PyResult<String> {
9
+ Ok((a + b).to_string())
10
+ }
11
+ }
@@ -0,0 +1,70 @@
1
+ Metadata-Version: 2.4
2
+ Name: omdev-rs
3
+ Version: 0.0.0.dev476
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.dev476
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,12 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ omdev/rs/_boilerplate/Cargo.lock
6
+ omdev/rs/_boilerplate/Cargo.toml
7
+ omdev/rs/_boilerplate/src/lib.rs
8
+ omdev_rs.egg-info/PKG-INFO
9
+ omdev_rs.egg-info/SOURCES.txt
10
+ omdev_rs.egg-info/dependency_links.txt
11
+ omdev_rs.egg-info/requires.txt
12
+ omdev_rs.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ omdev==0.0.0.dev476
@@ -0,0 +1,34 @@
1
+ [build-system]
2
+ requires = [
3
+ 'setuptools',
4
+ 'setuptools-rust',
5
+ ]
6
+ build-backend = 'setuptools.build_meta'
7
+
8
+ [project]
9
+ name = 'omdev-rs'
10
+ authors = [
11
+ {name = 'wrmsr'},
12
+ ]
13
+ urls = {source = 'https://github.com/wrmsr/omlish'}
14
+ license = 'BSD-3-Clause'
15
+ readme = 'README.md'
16
+ requires-python = '>=3.13'
17
+ version = '0.0.0.dev476'
18
+ classifiers = [
19
+ 'Development Status :: 2 - Pre-Alpha',
20
+ 'Intended Audience :: Developers',
21
+ 'Operating System :: OS Independent',
22
+ 'Operating System :: POSIX',
23
+ 'Programming Language :: Python :: 3',
24
+ 'Programming Language :: Python :: 3.13',
25
+ ]
26
+ description = 'omdev'
27
+ dependencies = [
28
+ 'omdev == 0.0.0.dev476',
29
+ ]
30
+
31
+ [tool.setuptools]
32
+
33
+ [tool.setuptools.packages.find]
34
+ include = []
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,40 @@
1
+ import setuptools as st
2
+ import setuptools_rust as st_rs
3
+
4
+
5
+ def _patch_sdist():
6
+ def _sdist_add_defaults(old, self):
7
+ import os.path
8
+
9
+ old(self)
10
+
11
+ if self.distribution.rust_extensions and len(self.distribution.rust_extensions) > 0:
12
+ build_rust = self.get_finalized_command('build_rust') # noqa
13
+ for ext in build_rust.extensions:
14
+ ext_dir = os.path.dirname(ext.path)
15
+ for n in os.listdir(ext_dir):
16
+ if n.startswith('.') or n == 'target':
17
+ continue
18
+ p = os.path.join(ext_dir, n)
19
+ if os.path.isfile(p):
20
+ self.filelist.append(p)
21
+ elif os.path.isdir(p):
22
+ self.filelist.extend(os.path.join(dp, f) for dp, dn, fn in os.walk(p) for f in fn)
23
+
24
+ # Sadly, we can't just subclass sdist and override it via cmdclass because manifest_maker calls
25
+ # `sdist.add_defaults` as an unbound function, not a bound method:
26
+ # https://github.com/pypa/setuptools/blob/9c4d383631d3951fcae0afd73b5d08ff5a262976/setuptools/command/egg_info.py#L581
27
+ from setuptools.command.sdist import sdist # noqa
28
+ sdist.add_defaults = (lambda old: lambda sdist: _sdist_add_defaults(old, sdist))(sdist.add_defaults) # noqa
29
+
30
+ _patch_sdist()
31
+
32
+
33
+ st.setup(
34
+ rust_extensions=[
35
+ st_rs.RustExtension(
36
+ 'omdev.rs._boilerplate',
37
+ path='omdev/rs/_boilerplate/Cargo.toml',
38
+ ),
39
+ ],
40
+ )