velocus 0.1.0__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.
velocus/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ """Velocus: user-facing CLI for the Velarium ecosystem (not yet implemented)."""
2
+
3
+ __version__ = "0.1.0"
velocus/py.typed ADDED
File without changes
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.4
2
+ Name: velocus
3
+ Version: 0.1.0
4
+ Summary: Velarium ecosystem CLI — scaffold
5
+ Project-URL: Homepage, https://github.com/eddiethedean/velarium
6
+ Project-URL: Repository, https://github.com/eddiethedean/velarium
7
+ Project-URL: Documentation, https://github.com/eddiethedean/velarium/blob/main/docs/README.md
8
+ Project-URL: Changelog, https://github.com/eddiethedean/velarium/blob/main/CHANGELOG.md
9
+ Author: Velarium contributors
10
+ License: MIT
11
+ License-File: LICENSE
12
+ Keywords: cli,typing,velarium
13
+ Classifier: Development Status :: 2 - Pre-Alpha
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Requires-Python: >=3.10
20
+ Description-Content-Type: text/markdown
21
+
22
+ # velocus
23
+
24
+ **Role in Velarium:** **Ecosystem CLI** — single entry point to inspect IR, drive builds, and dispatch to backends (**stubber**, **morphra**, **granitus**, future tools) without each package exposing a separate UX.
25
+
26
+ | | |
27
+ |---|---|
28
+ | **PyPI** | `velocus` (scaffold) |
29
+ | **Status** | **Scaffold** — orchestration not implemented |
30
+
31
+ ## Today
32
+
33
+ Use the [**stubber**](../stubber/README.md) CLI for:
34
+
35
+ - `stubber ir` — print ModelSpec JSON for a dataclass
36
+ - `stubber stub` — emit `.pyi` body
37
+
38
+ ## Planned behavior
39
+
40
+ Thin orchestration only: parse commands, call **`velarium`** and backend packages, format output — no duplicated IR logic (see [docs/valarium.md](../../docs/valarium.md)).
41
+
42
+ ## See also
43
+
44
+ - [docs/design.md](../../docs/design.md) — CLI philosophy
45
+ - [Documentation index](../../docs/README.md)
@@ -0,0 +1,6 @@
1
+ velocus/__init__.py,sha256=99WIChaGqc2H-3fhsG1Y61JQ5fM6moKtBnc2K-OC5Yg,104
2
+ velocus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ velocus-0.1.0.dist-info/METADATA,sha256=LlRsA818GVCd3FYPT-rzbtLwj0euLep6PNuzcVssW54,1696
4
+ velocus-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
5
+ velocus-0.1.0.dist-info/licenses/LICENSE,sha256=bwmr4qAwMV6ju2ew68MUpQNfHXAGmBNxjgegUYEXr6I,1072
6
+ velocus-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) stubber contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.