worldlines 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,40 @@
1
+ # Environment & secrets
2
+ .env
3
+ .env.*
4
+ !.env.example
5
+
6
+ # Python
7
+ __pycache__/
8
+ *.py[cod]
9
+ *$py.class
10
+ *.so
11
+ *.egg-info/
12
+ dist/
13
+ build/
14
+ *.egg
15
+
16
+ # Virtual environments
17
+ .venv/
18
+ venv/
19
+ ENV/
20
+
21
+ # IDE
22
+ .vscode/
23
+ .idea/
24
+ *.swp
25
+ *.swo
26
+ *~
27
+
28
+ # OS
29
+ .DS_Store
30
+ Thumbs.db
31
+
32
+ # Testing
33
+ .pytest_cache/
34
+ .coverage
35
+ htmlcov/
36
+
37
+ # Local runtime / sandbox data (keep local, do not track)
38
+ /.neonrp/
39
+ .neonrp/
40
+ /my-rpg/
@@ -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,15 @@
1
+ # worldlines
2
+
3
+ WorldLines is the guided launcher for the [NeonRP](https://github.com/LudicDynamics/WorldLines)
4
+ runtime — a file-backed text RPG engine with agent-driven storytelling.
5
+
6
+ This package is a thin shim that installs the matching `neonrp` runtime
7
+ and exposes the `worldlines` CLI entry point:
8
+
9
+ ```bash
10
+ uv tool install worldlines
11
+ worldlines
12
+ ```
13
+
14
+ For the full engine, features, and developer docs, see the main
15
+ [NeonRP repository](https://github.com/LudicDynamics/WorldLines).
@@ -0,0 +1,33 @@
1
+ [project]
2
+ name = "worldlines"
3
+ # Version is synced with neonrp by the release workflow (sed-replaced before build).
4
+ version = "0.1.0"
5
+ description = "WorldLines — guided launcher for the NeonRP runtime (Agents for RolePlay)"
6
+ authors = [
7
+ {name = "nikoloside", email = "nikoloside@gmail.com"},
8
+ {name = "redoctober"},
9
+ ]
10
+ readme = "README.md"
11
+ license = {text = "MIT"}
12
+ requires-python = ">=3.10"
13
+ # Worldlines is a thin wrapper that pins the matching neonrp version.
14
+ # The release workflow rewrites this dependency to '==<same-version>'.
15
+ dependencies = [
16
+ "neonrp==0.1.0",
17
+ ]
18
+
19
+ [project.scripts]
20
+ worldlines = "neonrp.cli:worldlines_cli"
21
+
22
+ [project.urls]
23
+ Homepage = "https://worldlines.gg"
24
+ Repository = "https://github.com/LudicDynamics/WorldLines"
25
+ Issues = "https://github.com/LudicDynamics/WorldLines/issues"
26
+
27
+ [build-system]
28
+ requires = ["hatchling"]
29
+ build-backend = "hatchling.build"
30
+
31
+ [tool.hatch.build.targets.wheel]
32
+ # The wheel contains only the shim package described by force-include.
33
+ only-include = ["worldlines_shim"]
@@ -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