28 lines
587 B
TOML
28 lines
587 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "idea180-credimesh-federated-privacy"
|
|
version = "0.1.0"
|
|
description = "CrediMesh: federated, privacy-preserving mortgage underwriting orchestration."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"cryptography>=42",
|
|
"networkx>=3.2",
|
|
"pydantic>=2.7",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = ["pytest>=8"]
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|