27 lines
560 B
TOML
27 lines
560 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "idea187-autopoiesis-verifiable-service"
|
|
version = "0.1.0"
|
|
description = "Verifiable service-genome fabric for safe self-replication and auditable provenance"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"cryptography>=42.0.0",
|
|
"pydantic>=2.7.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"build>=1.2.0",
|
|
"pytest>=8.0.0",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|