boyce 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.
- boyce-0.0.1/PKG-INFO +6 -0
- boyce-0.0.1/boyce/__init__.py +1 -0
- boyce-0.0.1/boyce.egg-info/PKG-INFO +6 -0
- boyce-0.0.1/boyce.egg-info/SOURCES.txt +6 -0
- boyce-0.0.1/boyce.egg-info/dependency_links.txt +1 -0
- boyce-0.0.1/boyce.egg-info/top_level.txt +1 -0
- boyce-0.0.1/pyproject.toml +10 -0
- boyce-0.0.1/setup.cfg +4 -0
boyce-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Boyce — placeholder to reserve PyPI namespace."""
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
boyce
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=42"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "boyce"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Semantic protocol and safety layer for agentic database workflows."
|
|
9
|
+
license = {text = "MIT"}
|
|
10
|
+
requires-python = ">=3.10"
|
boyce-0.0.1/setup.cfg
ADDED