From 61278d1d0ddd470dc8bf82a104360a9c98a1d434 Mon Sep 17 00:00:00 2001 From: Max Lin Date: Wed, 22 Oct 2025 23:58:10 +0800 Subject: [PATCH] fix: uv package issue and we now are able to install tradingagents by uv --- pyproject.toml | 8 ++++++++ tradingagents/__init__.py | 0 2 files changed, 8 insertions(+) create mode 100644 tradingagents/__init__.py diff --git a/pyproject.toml b/pyproject.toml index 63af4721..b1324863 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,3 +33,11 @@ dependencies = [ "typing-extensions>=4.14.0", "yfinance>=0.2.63", ] + +[build-system] +requires = ["uv_build>=0.8.5, <0.9.0"] +build-backend = "uv_build" + +[tool.uv.build-backend] +module-name = "tradingagents" +module-root = "" diff --git a/tradingagents/__init__.py b/tradingagents/__init__.py new file mode 100644 index 00000000..e69de29b