Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ""
Comment on lines +37 to +43

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The addition of the build-system and tool.uv.build-backend sections in pyproject.toml indicates a transition to using uv_build. However, the setup.py file is still present in the repository. This can lead to conflicts and confusion during the build process. It's critical to remove setup.py to ensure that uv_build is the sole build system in use.

Consider removing setup.py and any related configurations to avoid potential issues.

Empty file added tradingagents/__init__.py
Empty file.