fabrick 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,25 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+ environment: pypi
11
+ permissions:
12
+ id-token: write
13
+ contents: read
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-python@v5
17
+ with:
18
+ python-version: "3.12"
19
+ - name: Install build
20
+ run: python -m pip install build
21
+ - name: Build
22
+ run: python -m build
23
+ - name: Publish
24
+ uses: pypa/gh-action-pypi-publish@release/v1
25
+
@@ -0,0 +1,6 @@
1
+ .venv/
2
+ __pycache__/
3
+ *.egg-info/
4
+ build/
5
+ dist/
6
+
fabrick-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: fabrick
3
+ Version: 0.0.1
4
+ Summary: Reserved Python package name for Softmax Fabric work.
5
+ Project-URL: Homepage, https://github.com/Metta-AI/fabrick
6
+ Project-URL: Repository, https://github.com/Metta-AI/fabrick
7
+ Author: Softmax
8
+ Keywords: agent-memory,fabric,recurrent-graphs
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Requires-Python: >=3.10
18
+ Description-Content-Type: text/markdown
19
+
20
+ # fabrick
21
+
22
+ `fabrick` is a reserved Python package name for Softmax Fabric work.
23
+
24
+ The package is intentionally minimal while the public Fabric API is being finalized.
25
+
@@ -0,0 +1,6 @@
1
+ # fabrick
2
+
3
+ `fabrick` is a reserved Python package name for Softmax Fabric work.
4
+
5
+ The package is intentionally minimal while the public Fabric API is being finalized.
6
+
@@ -0,0 +1,29 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "fabrick"
7
+ version = "0.0.1"
8
+ description = "Reserved Python package name for Softmax Fabric work."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ authors = [
12
+ { name = "Softmax" }
13
+ ]
14
+ keywords = ["fabric", "recurrent-graphs", "agent-memory"]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Intended Audience :: Developers",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3 :: Only",
20
+ "Programming Language :: Python :: 3.10",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ "Programming Language :: Python :: 3.13",
24
+ ]
25
+
26
+ [project.urls]
27
+ Homepage = "https://github.com/Metta-AI/fabrick"
28
+ Repository = "https://github.com/Metta-AI/fabrick"
29
+
@@ -0,0 +1,6 @@
1
+ """Reserved package namespace for Softmax Fabric work."""
2
+
3
+ __all__ = ["__version__"]
4
+
5
+ __version__ = "0.0.1"
6
+
fabrick-0.0.1/uv.lock ADDED
@@ -0,0 +1,8 @@
1
+ version = 1
2
+ revision = 3
3
+ requires-python = ">=3.10"
4
+
5
+ [[package]]
6
+ name = "fabrick"
7
+ version = "0.0.1"
8
+ source = { editable = "." }