35 lines
683 B
TOML
35 lines
683 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "solfuse"
|
|
version = "0.1.0"
|
|
description = "Privacy-preserving federated orchestration for hybrid energy microgrids"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = "MIT"
|
|
authors = [{name = "OpenCode Swarm"}]
|
|
dependencies = [
|
|
"cryptography>=43.0.0",
|
|
"jsonschema>=4.23.0",
|
|
"packaging>=24.0",
|
|
"numpy>=1.26.4",
|
|
"pydantic>=2.8.2",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"build>=1.2.2",
|
|
"pytest>=8.3.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
solfuse = "solfuse.cli:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|