omdev-cli 0.0.0.dev33__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,15 @@
1
+ Metadata-Version: 2.1
2
+ Name: omdev-cli
3
+ Version: 0.0.0.dev33
4
+ Summary: omdev
5
+ Author: wrmsr
6
+ License: BSD-3-Clause
7
+ Project-URL: source, https://github.com/wrmsr/omlish
8
+ Classifier: License :: OSI Approved :: BSD License
9
+ Classifier: Development Status :: 2 - Pre-Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Operating System :: POSIX
13
+ Requires-Python: ~=3.12
14
+ License-File: LICENSE
15
+ Requires-Dist: omdev==0.0.0.dev33
@@ -0,0 +1,13 @@
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
+ Core packages installable from git via:
7
+
8
+ .. code-block::
9
+
10
+ pip install 'git+https://github.com/wrmsr/omlish@master#subdirectory=.pkg/<pkg>'
11
+
12
+ Core packages have no required dependencies, but numerous optional ones - see their respective ``pyproject.toml`` files
13
+ for details.
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.1
2
+ Name: omdev-cli
3
+ Version: 0.0.0.dev33
4
+ Summary: omdev
5
+ Author: wrmsr
6
+ License: BSD-3-Clause
7
+ Project-URL: source, https://github.com/wrmsr/omlish
8
+ Classifier: License :: OSI Approved :: BSD License
9
+ Classifier: Development Status :: 2 - Pre-Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Operating System :: POSIX
13
+ Requires-Python: ~=3.12
14
+ License-File: LICENSE
15
+ Requires-Dist: omdev==0.0.0.dev33
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.rst
3
+ pyproject.toml
4
+ omdev_cli.egg-info/PKG-INFO
5
+ omdev_cli.egg-info/SOURCES.txt
6
+ omdev_cli.egg-info/dependency_links.txt
7
+ omdev_cli.egg-info/entry_points.txt
8
+ omdev_cli.egg-info/requires.txt
9
+ omdev_cli.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ om = omdev.cli.main:_main
@@ -0,0 +1 @@
1
+ omdev==0.0.0.dev33
@@ -0,0 +1,34 @@
1
+ [build-system]
2
+ requires = [
3
+ 'setuptools',
4
+ ]
5
+ build-backend = 'setuptools.build_meta'
6
+
7
+ [project]
8
+ name = 'omdev-cli'
9
+ authors = [
10
+ {name = 'wrmsr'},
11
+ ]
12
+ urls = {source = 'https://github.com/wrmsr/omlish'}
13
+ license = {text = 'BSD-3-Clause'}
14
+ requires-python = '~=3.12'
15
+ version = '0.0.0.dev33'
16
+ classifiers = [
17
+ 'License :: OSI Approved :: BSD License',
18
+ 'Development Status :: 2 - Pre-Alpha',
19
+ 'Intended Audience :: Developers',
20
+ 'Operating System :: OS Independent',
21
+ 'Operating System :: POSIX',
22
+ ]
23
+ description = 'omdev'
24
+ dependencies = [
25
+ 'omdev == 0.0.0.dev33',
26
+ ]
27
+
28
+ [project.scripts]
29
+ om = 'omdev.cli.main:_main'
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
+