20 lines
554 B
TOML
20 lines
554 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "edge_latency_aware_cross_venue_execution"
|
|
version = "0.1.0"
|
|
description = "Edge-Latency Aware Cross-Venue Execution Planner (ELAC-Plan) core MVP"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = {text = "MIT"}
|
|
authors = [{name = "OpenCode", email = "devnull@example.com"}]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
include = ["edge_latency_aware_cross_venue_execution*"]
|
|
|
|
[project.urls]
|
|
Home = "https://example.com/elac-plan"
|