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.
- bl_context-0.0.1/PKG-INFO +36 -0
- bl_context-0.0.1/README.md +19 -0
- bl_context-0.0.1/pyproject.toml +29 -0
- bl_context-0.0.1/setup.cfg +4 -0
- bl_context-0.0.1/src/bl_context/__init__.py +6 -0
- bl_context-0.0.1/src/bl_context.egg-info/PKG-INFO +36 -0
- bl_context-0.0.1/src/bl_context.egg-info/SOURCES.txt +8 -0
- bl_context-0.0.1/src/bl_context.egg-info/dependency_links.txt +1 -0
- bl_context-0.0.1/src/bl_context.egg-info/top_level.txt +1 -0
- bl_context-0.0.1/tests/test_package.py +7 -0
|
@@ -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,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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bl_context
|