velocus 0.1.0__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,61 @@
1
+ # Byte-compiled / optimized
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+
7
+ # Virtual environments
8
+ .venv/
9
+ venv/
10
+ ENV/
11
+ env/
12
+
13
+ # Packaging / build
14
+ build/
15
+ dist/
16
+ packages/*/dist/
17
+ *.egg-info/
18
+ *.egg
19
+ .eggs/
20
+ pip-wheel-metadata/
21
+ share/python-wheels/
22
+
23
+ # Hatch / setuptools
24
+ .hatch/
25
+
26
+ # Testing / coverage
27
+ .pytest_cache/
28
+ .coverage
29
+ .coverage.*
30
+ htmlcov/
31
+ .tox/
32
+ .nox/
33
+ coverage.xml
34
+ *.cover
35
+ .hypothesis/
36
+
37
+ # Type checkers / linters
38
+ .mypy_cache/
39
+ .dmypy.json
40
+ dmypy.json
41
+ .ruff_cache/
42
+ .pytype/
43
+
44
+ # IDEs / editors
45
+ .idea/
46
+ .vscode/
47
+ *.swp
48
+ *.swo
49
+ *~
50
+
51
+ # OS
52
+ .DS_Store
53
+ Thumbs.db
54
+
55
+ # Local env / secrets
56
+ .env
57
+ .env.*
58
+ !.env.example
59
+
60
+ # Cursor / tooling (optional local state)
61
+ *.log
velocus-0.1.0/LICENSE ADDED
@@ -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.
velocus-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,44 @@
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
+ Keywords: cli,typing,velarium
12
+ Classifier: Development Status :: 2 - Pre-Alpha
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Requires-Python: >=3.10
19
+ Description-Content-Type: text/markdown
20
+
21
+ # velocus
22
+
23
+ **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.
24
+
25
+ | | |
26
+ |---|---|
27
+ | **PyPI** | `velocus` (scaffold) |
28
+ | **Status** | **Scaffold** — orchestration not implemented |
29
+
30
+ ## Today
31
+
32
+ Use the [**stubber**](../stubber/README.md) CLI for:
33
+
34
+ - `stubber ir` — print ModelSpec JSON for a dataclass
35
+ - `stubber stub` — emit `.pyi` body
36
+
37
+ ## Planned behavior
38
+
39
+ Thin orchestration only: parse commands, call **`velarium`** and backend packages, format output — no duplicated IR logic (see [docs/valarium.md](../../docs/valarium.md)).
40
+
41
+ ## See also
42
+
43
+ - [docs/design.md](../../docs/design.md) — CLI philosophy
44
+ - [Documentation index](../../docs/README.md)
@@ -0,0 +1,24 @@
1
+ # velocus
2
+
3
+ **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.
4
+
5
+ | | |
6
+ |---|---|
7
+ | **PyPI** | `velocus` (scaffold) |
8
+ | **Status** | **Scaffold** — orchestration not implemented |
9
+
10
+ ## Today
11
+
12
+ Use the [**stubber**](../stubber/README.md) CLI for:
13
+
14
+ - `stubber ir` — print ModelSpec JSON for a dataclass
15
+ - `stubber stub` — emit `.pyi` body
16
+
17
+ ## Planned behavior
18
+
19
+ Thin orchestration only: parse commands, call **`velarium`** and backend packages, format output — no duplicated IR logic (see [docs/valarium.md](../../docs/valarium.md)).
20
+
21
+ ## See also
22
+
23
+ - [docs/design.md](../../docs/design.md) — CLI philosophy
24
+ - [Documentation index](../../docs/README.md)
@@ -0,0 +1,39 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "velocus"
7
+ dynamic = ["version"]
8
+ description = "Velarium ecosystem CLI — scaffold"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "Velarium contributors" }]
13
+ keywords = ["typing", "cli", "velarium"]
14
+ classifiers = [
15
+ "Development Status :: 2 - Pre-Alpha",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.10",
18
+ "Programming Language :: Python :: 3.11",
19
+ "Programming Language :: Python :: 3.12",
20
+ "Programming Language :: Python :: 3.13",
21
+ ]
22
+
23
+ [project.urls]
24
+ Homepage = "https://github.com/eddiethedean/velarium"
25
+ Repository = "https://github.com/eddiethedean/velarium"
26
+ Documentation = "https://github.com/eddiethedean/velarium/blob/main/docs/README.md"
27
+ Changelog = "https://github.com/eddiethedean/velarium/blob/main/CHANGELOG.md"
28
+
29
+ [tool.hatch.version]
30
+ path = "velocus/__init__.py"
31
+
32
+ [tool.hatch.build.targets.sdist]
33
+ include = ["velocus", "README.md"]
34
+
35
+ [tool.hatch.build.targets.sdist.force-include]
36
+ "../../LICENSE" = "LICENSE"
37
+
38
+ [tool.hatch.build.targets.wheel]
39
+ packages = ["velocus"]
@@ -0,0 +1,3 @@
1
+ """Velocus: user-facing CLI for the Velarium ecosystem (not yet implemented)."""
2
+
3
+ __version__ = "0.1.0"
File without changes