lspbox 0.0.1__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.
lspbox/__init__.py ADDED
@@ -0,0 +1,17 @@
1
+ """lspbox — a unified, batteries-included Language Server runtime.
2
+
3
+ Part of the massiron ecosystem (https://massiron.com).
4
+
5
+ This is an early reserved release. lspbox will discover, install, and run
6
+ Language Server Protocol servers for any language from one place.
7
+ """
8
+ from __future__ import annotations
9
+
10
+ __version__ = "0.0.1"
11
+ __product__ = "lspbox"
12
+
13
+
14
+ def main() -> None:
15
+ """Entry point — prints status until the first feature release ships."""
16
+ print(f"lspbox {__version__} — unified LSP runtime (massiron ecosystem)")
17
+ print("Early reserved release. See https://massiron.com")
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: lspbox
3
+ Version: 0.0.1
4
+ Summary: lspbox — a unified, batteries-included Language Server runtime: discover, install, and run LSP servers for any language from one place. Part of the massiron ecosystem.
5
+ Author: massiron
6
+ License: Proprietary
7
+ Project-URL: Homepage, https://massiron.com
8
+ Keywords: lsp,language-server,developer-tools,massiron,ide
9
+ Classifier: Development Status :: 2 - Pre-Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Software Development :: Libraries
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Dynamic: license-file
17
+
18
+ # lspbox
19
+
20
+ **A unified, batteries-included Language Server runtime.**
21
+ Part of the [massiron](https://massiron.com) ecosystem.
22
+
23
+ `lspbox` discovers, installs, and runs Language Server Protocol servers for any
24
+ language from one place — no per-language setup, no version juggling. One box,
25
+ every language server.
26
+
27
+ ```bash
28
+ pip install lspbox
29
+ ```
30
+
31
+ > Early reserved release (`0.0.1`). Feature releases coming soon.
32
+
33
+ ## Ecosystem
34
+
35
+ - **atlas** — deterministic code intelligence (0 LLM tokens)
36
+ - **deepstrain** — autonomous engineering agent
37
+ - **nodestone** — project cognition / continuity memory
38
+ - **adauto** — developer-marketing automation
39
+ - **lspbox** — unified LSP runtime
40
+
41
+ © massiron. All rights reserved.
@@ -0,0 +1,7 @@
1
+ lspbox/__init__.py,sha256=qu7b2ROnEVsYE6f4ZGbi7eCEFL_HMcMl7KVYbBM5wj4,594
2
+ lspbox-0.0.1.dist-info/licenses/LICENSE,sha256=hjonkKM4yXL_mixUX_1FAADekEv-Y4im00BUOlWQDhQ,44
3
+ lspbox-0.0.1.dist-info/METADATA,sha256=WiZfeGm3-7heSuGBNYLXRCcW7nV3VD-TB8WBww6sEx0,1388
4
+ lspbox-0.0.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
5
+ lspbox-0.0.1.dist-info/entry_points.txt,sha256=7Q0l2caVW-1HgGGWFszwA01bpa1pHRzCHzNHnnCp7g0,39
6
+ lspbox-0.0.1.dist-info/top_level.txt,sha256=fM0wQoFU369lqamIY3geT3QAz-RRFxMpNqqIdnVa7uc,7
7
+ lspbox-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ lspbox = lspbox:main
@@ -0,0 +1 @@
1
+ Proprietary. All rights reserved, massiron.
@@ -0,0 +1 @@
1
+ lspbox