sae-worldengine-sdk 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,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: sae-worldengine-sdk
3
+ Version: 0.1.0
4
+ Summary: World Engine SDK for the Sovereign Autonomy Engine.
5
+ Author: Kevin Price
6
+ License: Proprietary
7
+ Project-URL: Homepage, https://example.com/sae-worldengine-sdk
8
+ Requires-Python: >=3.11
9
+ Description-Content-Type: text/markdown
10
+
11
+ # sae-worldengine-sdk
12
+
13
+ World Engine SDK for the Sovereign Autonomy Engine.
14
+
15
+ This package defines the internal universe layer, including:
16
+ - Worlds
17
+ - Regions
18
+ - Timelines
19
+ - Events
20
+ - Simulation loops
21
+
22
+ This is the foundation of Wave 2: the internal computational universe.
@@ -0,0 +1,12 @@
1
+ # sae-worldengine-sdk
2
+
3
+ World Engine SDK for the Sovereign Autonomy Engine.
4
+
5
+ This package defines the internal universe layer, including:
6
+ - Worlds
7
+ - Regions
8
+ - Timelines
9
+ - Events
10
+ - Simulation loops
11
+
12
+ This is the foundation of Wave 2: the internal computational universe.
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "sae-worldengine-sdk"
7
+ version = "0.1.0"
8
+ description = "World Engine SDK for the Sovereign Autonomy Engine."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = { text = "Proprietary" }
12
+ authors = [
13
+ { name = "Kevin Price" }
14
+ ]
15
+ dependencies = []
16
+
17
+ [project.urls]
18
+ Homepage = "https://example.com/sae-worldengine-sdk"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,19 @@
1
+ """
2
+ sae-worldengine-sdk
3
+
4
+ Core world engine primitives for the Sovereign Autonomy Engine.
5
+ """
6
+
7
+ class World:
8
+ def __init__(self, name: str):
9
+ self.name = name
10
+ self.regions = []
11
+ self.timeline = []
12
+
13
+ def add_region(self, region):
14
+ self.regions.append(region)
15
+
16
+ def tick(self):
17
+ # Placeholder simulation tick
18
+ for region in self.regions:
19
+ region.update()
@@ -0,0 +1,8 @@
1
+ class Region:
2
+ def __init__(self, name: str):
3
+ self.name = name
4
+ self.state = {}
5
+
6
+ def update(self):
7
+ # Placeholder region update logic
8
+ pass
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: sae-worldengine-sdk
3
+ Version: 0.1.0
4
+ Summary: World Engine SDK for the Sovereign Autonomy Engine.
5
+ Author: Kevin Price
6
+ License: Proprietary
7
+ Project-URL: Homepage, https://example.com/sae-worldengine-sdk
8
+ Requires-Python: >=3.11
9
+ Description-Content-Type: text/markdown
10
+
11
+ # sae-worldengine-sdk
12
+
13
+ World Engine SDK for the Sovereign Autonomy Engine.
14
+
15
+ This package defines the internal universe layer, including:
16
+ - Worlds
17
+ - Regions
18
+ - Timelines
19
+ - Events
20
+ - Simulation loops
21
+
22
+ This is the foundation of Wave 2: the internal computational universe.
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/sae_worldengine_sdk/__init__.py
4
+ src/sae_worldengine_sdk/region.py
5
+ src/sae_worldengine_sdk.egg-info/PKG-INFO
6
+ src/sae_worldengine_sdk.egg-info/SOURCES.txt
7
+ src/sae_worldengine_sdk.egg-info/dependency_links.txt
8
+ src/sae_worldengine_sdk.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ sae_worldengine_sdk