From 5fec171a1eaa700c82cb6e0a37fadc714c547743 Mon Sep 17 00:00:00 2001 From: Yijia Xiao Date: Sat, 7 Feb 2026 08:26:51 +0000 Subject: [PATCH] chore: add build-system config and update version to 0.2.0 --- pyproject.toml | 11 +++++++++-- uv.lock | 4 ++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 70efd5b3..9213d7f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,11 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + [project] name = "tradingagents" -version = "0.1.0" -description = "Add your description here" +version = "0.2.0" +description = "TradingAgents: Multi-Agents LLM Financial Trading Framework" readme = "README.md" requires-python = ">=3.10" dependencies = [ @@ -31,3 +35,6 @@ dependencies = [ [project.scripts] tradingagents = "cli.main:app" + +[tool.setuptools.packages.find] +include = ["tradingagents*", "cli*"] diff --git a/uv.lock b/uv.lock index 7cd98425..37bddf36 100644 --- a/uv.lock +++ b/uv.lock @@ -3499,8 +3499,8 @@ wheels = [ [[package]] name = "tradingagents" -version = "0.1.0" -source = { virtual = "." } +version = "0.2.0" +source = { editable = "." } dependencies = [ { name = "backtrader" }, { name = "chainlit" },