23 lines
726 B
TOML
23 lines
726 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "idea151-aidmesh-federated-privacy"
|
|
version = "0.0.1"
|
|
description = "Privacy-preserving, offline-first disaster-relief orchestration (AidMesh)"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = { text = "MIT" }
|
|
authors = [ { name = "AidMesh Dev Team" } ]
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
]
|
|
# long_description is configured via readme or tool-setuptools metadata in a separate section
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
include = ["idea151_aidmesh_federated_privacy*"]
|