bl-context 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.
@@ -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,19 @@
1
+ # Base Layer Context
2
+
3
+ Persistent context for coding agents.
4
+
5
+ This repository currently contains the pre-development Python package that
6
+ reserves the `bl-context` name and its release infrastructure. Product
7
+ functionality has not been implemented yet.
8
+
9
+ ## Install
10
+
11
+ ```console
12
+ pip install bl-context
13
+ ```
14
+
15
+ ```python
16
+ import bl_context
17
+
18
+ print(bl_context.__version__)
19
+ ```
@@ -0,0 +1,29 @@
1
+ [build-system]
2
+ requires = ["setuptools>=77"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "bl-context"
7
+ version = "0.0.1"
8
+ description = "Persistent context for coding agents"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ authors = [
12
+ { name = "Base Layer" },
13
+ ]
14
+ classifiers = [
15
+ "Development Status :: 2 - Pre-Alpha",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.10",
18
+ "Programming Language :: Python :: 3.11",
19
+ "Programming Language :: Python :: 3.12",
20
+ "Programming Language :: Python :: 3.13",
21
+ ]
22
+
23
+ [project.urls]
24
+ Homepage = "https://github.com/gnulnx/Context"
25
+ Repository = "https://github.com/gnulnx/Context"
26
+ Issues = "https://github.com/gnulnx/Context/issues"
27
+
28
+ [tool.setuptools.packages.find]
29
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/bl_context/__init__.py
4
+ src/bl_context.egg-info/PKG-INFO
5
+ src/bl_context.egg-info/SOURCES.txt
6
+ src/bl_context.egg-info/dependency_links.txt
7
+ src/bl_context.egg-info/top_level.txt
8
+ tests/test_package.py
@@ -0,0 +1 @@
1
+ bl_context
@@ -0,0 +1,7 @@
1
+ from __future__ import annotations
2
+
3
+ import bl_context
4
+
5
+
6
+ def test_version() -> None:
7
+ assert bl_context.__version__ == "0.0.1"