lspbox 0.0.1__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.
- lspbox-0.0.1/LICENSE +1 -0
- lspbox-0.0.1/PKG-INFO +41 -0
- lspbox-0.0.1/README.md +24 -0
- lspbox-0.0.1/lspbox/__init__.py +17 -0
- lspbox-0.0.1/lspbox.egg-info/PKG-INFO +41 -0
- lspbox-0.0.1/lspbox.egg-info/SOURCES.txt +9 -0
- lspbox-0.0.1/lspbox.egg-info/dependency_links.txt +1 -0
- lspbox-0.0.1/lspbox.egg-info/entry_points.txt +2 -0
- lspbox-0.0.1/lspbox.egg-info/top_level.txt +1 -0
- lspbox-0.0.1/pyproject.toml +28 -0
- lspbox-0.0.1/setup.cfg +4 -0
lspbox-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Proprietary. All rights reserved, massiron.
|
lspbox-0.0.1/PKG-INFO
ADDED
|
@@ -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.
|
lspbox-0.0.1/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# lspbox
|
|
2
|
+
|
|
3
|
+
**A unified, batteries-included Language Server runtime.**
|
|
4
|
+
Part of the [massiron](https://massiron.com) ecosystem.
|
|
5
|
+
|
|
6
|
+
`lspbox` discovers, installs, and runs Language Server Protocol servers for any
|
|
7
|
+
language from one place — no per-language setup, no version juggling. One box,
|
|
8
|
+
every language server.
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install lspbox
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
> Early reserved release (`0.0.1`). Feature releases coming soon.
|
|
15
|
+
|
|
16
|
+
## Ecosystem
|
|
17
|
+
|
|
18
|
+
- **atlas** — deterministic code intelligence (0 LLM tokens)
|
|
19
|
+
- **deepstrain** — autonomous engineering agent
|
|
20
|
+
- **nodestone** — project cognition / continuity memory
|
|
21
|
+
- **adauto** — developer-marketing automation
|
|
22
|
+
- **lspbox** — unified LSP runtime
|
|
23
|
+
|
|
24
|
+
© massiron. All rights reserved.
|
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lspbox
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "lspbox"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "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."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Proprietary" }
|
|
12
|
+
authors = [{ name = "massiron" }]
|
|
13
|
+
keywords = ["lsp", "language-server", "developer-tools", "massiron", "ide"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Topic :: Software Development :: Libraries",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://massiron.com"
|
|
23
|
+
|
|
24
|
+
[project.scripts]
|
|
25
|
+
lspbox = "lspbox:main"
|
|
26
|
+
|
|
27
|
+
[tool.setuptools.packages.find]
|
|
28
|
+
include = ["lspbox*"]
|
lspbox-0.0.1/setup.cfg
ADDED