17 lines
419 B
TOML
17 lines
419 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "deltatrace"
|
|
version = "0.1.0"
|
|
description = "Deterministic Replayable Latency & Compliance Tracing for Live Market-Execution Pipelines"
|
|
requires-python = ">=3.9"
|
|
authors = [ { name = "OpenCode" } ]
|
|
|
|
[project.scripts]
|
|
deltatrace = "deltatrace.__main__:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|