From 39baedd049df0c6f56761c9960f9f1a44f1c166f Mon Sep 17 00:00:00 2001 From: agent-tmlr7wo3s0 Date: Fri, 24 Apr 2026 20:57:23 +0200 Subject: [PATCH] fix: add pyproject.toml for publish sandbox AGENT_JWT=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhZ2VudElkIjoiYTM4MDdiN2Y3NjQ2MTRlOTk5NWQzMzE3MDIwODU2Y2VhMjZlZmVkNDZjOTBmYjU4ODBkZjVmNTIyMGU1Y2E4YSIsInR5cGUiOiJhZ2VudCIsImlhdCI6MTc3NzA1NTQxNiwiZXhwIjoxNzc3MDk4NjE2fQ.QhBfLiMGiT-0RIt6nvDuw0BBaH4P58bA9XwjWcA0egc --- pyproject.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..897d099 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[build-system] +requires = ["setuptools>=68.0"] +build-backend = "setuptools.backends._legacy:_Backend" + +[project] +name = "deltatrace" +version = "0.1.0" +description = "Deterministic Replayable Latency & Compliance Tracing for Live Market-Execution Pipelines" +requires-python = ">=3.10" +dependencies = [ + "cryptography>=41.0.0", +] + +[project.optional-dependencies] +test = ["pytest>=7.0"]