worldlines 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.
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: worldlines
3
+ Version: 0.1.0
4
+ Summary: WorldLines — guided launcher for the NeonRP runtime (Agents for RolePlay)
5
+ Project-URL: Homepage, https://worldlines.gg
6
+ Project-URL: Repository, https://github.com/LudicDynamics/WorldLines
7
+ Project-URL: Issues, https://github.com/LudicDynamics/WorldLines/issues
8
+ Author: redoctober
9
+ Author-email: nikoloside <nikoloside@gmail.com>
10
+ License: MIT
11
+ Requires-Python: >=3.10
12
+ Requires-Dist: neonrp==0.1.0
13
+ Description-Content-Type: text/markdown
14
+
15
+ # worldlines
16
+
17
+ WorldLines is the guided launcher for the [NeonRP](https://github.com/LudicDynamics/WorldLines)
18
+ runtime — a file-backed text RPG engine with agent-driven storytelling.
19
+
20
+ This package is a thin shim that installs the matching `neonrp` runtime
21
+ and exposes the `worldlines` CLI entry point:
22
+
23
+ ```bash
24
+ uv tool install worldlines
25
+ worldlines
26
+ ```
27
+
28
+ For the full engine, features, and developer docs, see the main
29
+ [NeonRP repository](https://github.com/LudicDynamics/WorldLines).
@@ -0,0 +1,5 @@
1
+ worldlines_shim/__init__.py,sha256=TQmugliwpu-s7DMuBLgnsAHcDO1c4fS392kien-XMCw,329
2
+ worldlines-0.1.0.dist-info/METADATA,sha256=P4vrRaT744RJj4MFjboZ9pTmqSMGVEsMYi0CnHizoZY,984
3
+ worldlines-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
4
+ worldlines-0.1.0.dist-info/entry_points.txt,sha256=8Ifh_Ny7yjqNKzbkHZcMzA9uREQv8IEpvtL6abqQe34,57
5
+ worldlines-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,2 @@
1
+ [console_scripts]
2
+ worldlines = neonrp.cli:worldlines_cli
@@ -0,0 +1,8 @@
1
+ """Shim package for PyPI `worldlines` distribution.
2
+
3
+ The actual CLI and runtime live in the `neonrp` package. This package
4
+ only exists so `pip install worldlines` / `uv tool install worldlines`
5
+ works as a discoverable alias and installs the pinned neonrp runtime.
6
+ """
7
+
8
+ from neonrp.cli import worldlines_cli as main # noqa: F401