chore: add build-system config and update version to 0.2.0

This commit is contained in:
Yijia Xiao 2026-02-07 08:26:51 +00:00
parent 50c82a25b5
commit 5fec171a1e
No known key found for this signature in database
2 changed files with 11 additions and 4 deletions

View File

@ -1,7 +1,11 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project] [project]
name = "tradingagents" name = "tradingagents"
version = "0.1.0" version = "0.2.0"
description = "Add your description here" description = "TradingAgents: Multi-Agents LLM Financial Trading Framework"
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"
dependencies = [ dependencies = [
@ -31,3 +35,6 @@ dependencies = [
[project.scripts] [project.scripts]
tradingagents = "cli.main:app" tradingagents = "cli.main:app"
[tool.setuptools.packages.find]
include = ["tradingagents*", "cli*"]

View File

@ -3499,8 +3499,8 @@ wheels = [
[[package]] [[package]]
name = "tradingagents" name = "tradingagents"
version = "0.1.0" version = "0.2.0"
source = { virtual = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "backtrader" }, { name = "backtrader" },
{ name = "chainlit" }, { name = "chainlit" },