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.
- fabrick-0.0.1/.github/workflows/publish.yml +25 -0
- fabrick-0.0.1/.gitignore +6 -0
- fabrick-0.0.1/PKG-INFO +25 -0
- fabrick-0.0.1/README.md +6 -0
- fabrick-0.0.1/pyproject.toml +29 -0
- fabrick-0.0.1/src/fabrick/__init__.py +6 -0
- fabrick-0.0.1/uv.lock +8 -0
|
@@ -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
|
+
|
fabrick-0.0.1/.gitignore
ADDED
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
|
+
|
fabrick-0.0.1/README.md
ADDED
|
@@ -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
|
+
|