bl-context 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.
bl_context/__init__.py ADDED
@@ -0,0 +1,6 @@
1
+ """Base Layer Context.
2
+
3
+ The public API will be introduced in a future release.
4
+ """
5
+
6
+ __version__ = "0.0.1"
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: bl-context
3
+ Version: 0.0.1
4
+ Summary: Persistent context for coding agents
5
+ Author: Base Layer
6
+ Project-URL: Homepage, https://github.com/gnulnx/Context
7
+ Project-URL: Repository, https://github.com/gnulnx/Context
8
+ Project-URL: Issues, https://github.com/gnulnx/Context/issues
9
+ Classifier: Development Status :: 2 - Pre-Alpha
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+
18
+ # Base Layer Context
19
+
20
+ Persistent context for coding agents.
21
+
22
+ This repository currently contains the pre-development Python package that
23
+ reserves the `bl-context` name and its release infrastructure. Product
24
+ functionality has not been implemented yet.
25
+
26
+ ## Install
27
+
28
+ ```console
29
+ pip install bl-context
30
+ ```
31
+
32
+ ```python
33
+ import bl_context
34
+
35
+ print(bl_context.__version__)
36
+ ```
@@ -0,0 +1,5 @@
1
+ bl_context/__init__.py,sha256=lxyBSiTUnJE2Ea1W9RSE59nnwwD2eUfDx0pRqv9KnOw,106
2
+ bl_context-0.0.1.dist-info/METADATA,sha256=s_5s5RrWO67wT8z-AZv20VeUjhwfh8S1Cv2bOtzuAjY,1028
3
+ bl_context-0.0.1.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
4
+ bl_context-0.0.1.dist-info/top_level.txt,sha256=OPXr1GUs87uYPjOoo1XqwAKk-IzDIMdOtErt-diqpvY,11
5
+ bl_context-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (84.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ bl_context