25 lines
615 B
TOML
25 lines
615 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "edge_latency_aware_cross_venue_execution"
|
|
version = "0.1.0"
|
|
description = "ELAC-Plan MVP: edge-native cross-venue execution planning with privacy-preserving federation."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = {text = "MIT"}
|
|
authors = [ { name = "OpenCode" } ]
|
|
dependencies = [
|
|
"fastapi>=0.95.0",
|
|
"uvicorn[standard]",
|
|
"pydantic>=1.10",
|
|
"typing-extensions>=4.3",
|
|
"cryptography>=3.3",
|
|
"pytest>=7.0",
|
|
"httpx>=0.23"
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["elac_plan"]
|