fix(crypto/ci): repair Keccak-256 KAT, purge claims_audit pseudo-inferences, enforce boolean release gate, package zymatica_cli
Browse files- pyproject.toml +25 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=61.0"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "zymatica"
|
| 7 |
+
version = "1.0.0"
|
| 8 |
+
description = "Zymatica Semantic Communication & High-Performance Inference Engine"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
authors = [
|
| 11 |
+
{ name = "Danny Bouldiez | Devs One", email = "contact@zymatica.space" }
|
| 12 |
+
]
|
| 13 |
+
license = { text = "Zymatica Commercial & Novel-Holder Covenant License 2.0" }
|
| 14 |
+
keywords = ["semantic-communication", "lora", "compression", "inference-engine", "cuneiform"]
|
| 15 |
+
classifiers = [
|
| 16 |
+
"Programming Language :: Python :: 3",
|
| 17 |
+
"Topic :: Scientific/Engineering :: Artificial Intelligence"
|
| 18 |
+
]
|
| 19 |
+
dependencies = [
|
| 20 |
+
"numpy>=1.20.0"
|
| 21 |
+
]
|
| 22 |
+
|
| 23 |
+
[tool.setuptools.packages.find]
|
| 24 |
+
where = ["crates/zymatica-agent-harness", "."]
|
| 25 |
+
include = ["zymatica*", "crates*"]
|